mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
28 lines
565 B
Python
28 lines
565 B
Python
|
|
objc_library(
|
|
name = "WatchBridgeImpl",
|
|
enable_modules = True,
|
|
module_name = "WatchBridgeImpl",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
deps = [
|
|
"//submodules/LegacyComponents:LegacyComponents",
|
|
"//submodules/WatchCommon/Host:WatchCommon",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"WatchConnectivity",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|