mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
158 lines
3.9 KiB
Python
158 lines
3.9 KiB
Python
load("@build_bazel_rules_apple//apple:ios.bzl",
|
|
"ios_application",
|
|
)
|
|
|
|
load("@build_bazel_rules_swift//swift:swift.bzl",
|
|
"swift_library",
|
|
)
|
|
|
|
load("//build-system/bazel-utils:plist_fragment.bzl",
|
|
"plist_fragment",
|
|
)
|
|
|
|
module_name = "AnimationCacheTest"
|
|
|
|
filegroup(
|
|
name = "AppResources",
|
|
srcs = glob([
|
|
"Resources/**/*",
|
|
], exclude = ["Resources/**/.*"]),
|
|
)
|
|
|
|
swift_library(
|
|
name = "Lib",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
data = [
|
|
":AppResources",
|
|
],
|
|
deps = [
|
|
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit",
|
|
"//submodules/Display:Display",
|
|
"//submodules/TelegramUI/Components/AnimationCache:AnimationCache",
|
|
"//submodules/TelegramUI/Components/VideoAnimationCache:VideoAnimationCache",
|
|
"//submodules/TelegramUI/Components/LottieAnimationCache:LottieAnimationCache",
|
|
"//submodules/rlottie:RLottieBinding",
|
|
],
|
|
)
|
|
|
|
plist_fragment(
|
|
name = "BuildNumberInfoPlist",
|
|
extension = "plist",
|
|
template =
|
|
"""
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
"""
|
|
)
|
|
|
|
plist_fragment(
|
|
name = "VersionInfoPlist",
|
|
extension = "plist",
|
|
template =
|
|
"""
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
"""
|
|
)
|
|
|
|
plist_fragment(
|
|
name = "AppNameInfoPlist",
|
|
extension = "plist",
|
|
template =
|
|
"""
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Test</string>
|
|
"""
|
|
)
|
|
|
|
plist_fragment(
|
|
name = "AppInfoPlist",
|
|
extension = "plist",
|
|
template =
|
|
"""
|
|
<key>CFBundleAllowMixedLocalizations</key>
|
|
<true/>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Test</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.telegram.{module_name}</string>
|
|
<key>CFBundleName</key>
|
|
<string>Telegram</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
<key>LSRequiresIPhoneOS</key>
|
|
<true/>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
<key>UIDeviceFamily</key>
|
|
<array>
|
|
<integer>1</integer>
|
|
<integer>2</integer>
|
|
</array>
|
|
<key>UIFileSharingEnabled</key>
|
|
<false/>
|
|
<key>UILaunchStoryboardName</key>
|
|
<string>LaunchScreen</string>
|
|
<key>UIRequiredDeviceCapabilities</key>
|
|
<array>
|
|
<string>armv7</string>
|
|
</array>
|
|
<key>UIStatusBarStyle</key>
|
|
<string>UIStatusBarStyleDefault</string>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
<false/>
|
|
<key>UIViewEdgeAntialiasing</key>
|
|
<false/>
|
|
<key>UIViewGroupOpacity</key>
|
|
<false/>
|
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
<true/>
|
|
""".format(module_name=module_name)
|
|
)
|
|
|
|
ios_application(
|
|
name = module_name,
|
|
bundle_id = "org.telegram.{}".format(module_name),
|
|
families = ["iphone", "ipad"],
|
|
minimum_os_version = "9.0",
|
|
provisioning_profile = "@build_configuration//provisioning:Wildcard.mobileprovision",
|
|
infoplists = [
|
|
":AppInfoPlist",
|
|
":BuildNumberInfoPlist",
|
|
":VersionInfoPlist",
|
|
],
|
|
resources = [
|
|
"//Tests/Common:LaunchScreen",
|
|
],
|
|
frameworks = [
|
|
],
|
|
deps = [
|
|
"//Tests/Common:Main",
|
|
":Lib",
|
|
],
|
|
)
|