mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-05-12 12:01:44 +02:00
4647310322
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.
21 lines
628 B
Python
Executable File
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"],
|
|
)
|