mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
46 lines
1010 B
Python
46 lines
1010 B
Python
|
|
filegroup(
|
|
name = "LegacyComponentsResources",
|
|
srcs = glob([
|
|
"LegacyComponentsResources.bundle/**/*",
|
|
], exclude = ["Resources/LegacyComponentsResources.bundle/**/.*"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
objc_library(
|
|
name = "LegacyComponents",
|
|
enable_modules = True,
|
|
module_name = "LegacyComponents",
|
|
srcs = glob([
|
|
"Sources/*.m",
|
|
"Sources/*.mm",
|
|
"Sources/*.c",
|
|
"Sources/*.cpp",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
copts = [
|
|
"-I{}/PublicHeaders/LegacyComponents".format(package_name()),
|
|
],
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
deps = [
|
|
"//submodules/SSignalKit/SSignalKit:SSignalKit",
|
|
"//submodules/AppBundle:AppBundle",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"UIKIt",
|
|
"QuickLook",
|
|
"CoreMotion",
|
|
],
|
|
weak_sdk_frameworks = [
|
|
"Vision",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|