Files
GLEGram-iOS/GLEGram/TorEmbedded/BUILD
T
Leeksov 4647310322 GLEGram 12.5 — Initial public release
Based on Swiftgram 12.5 (Telegram iOS 12.5).
All GLEGram features ported and organized in GLEGram/ folder.

Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass,
Font Replacement, Fake Profile, Chat Export, Plugin System, and more.

See CHANGELOG_12.5.md for full details.
2026-04-06 09:48:12 +03:00

21 lines
628 B
Python
Executable File

# Tor removed to reduce IPA size (~70 MB). Stub only; no Tor.framework.
load("@rules_cc//cc:defs.bzl", "objc_library")
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
objc_library(
name = "TorEmbeddedRunner",
module_name = "TorEmbeddedRunner",
srcs = ["Sources/TorEmbeddedRunner.m"],
hdrs = ["Sources/TorEmbeddedRunner.h"],
copts = ["-fobjc-arc"],
visibility = ["//visibility:public"],
)
swift_library(
name = "TorEmbedded",
module_name = "TorEmbedded",
srcs = ["Sources/TorEmbedded.swift"],
deps = [":TorEmbeddedRunner"],
visibility = ["//visibility:public"],
)