mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
31 lines
562 B
Python
Vendored
31 lines
562 B
Python
Vendored
|
|
objc_library(
|
|
name = "Stripe",
|
|
enable_modules = True,
|
|
module_name = "Stripe",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
copts = [
|
|
"-I{}/PublicHeaders/Stripe".format(package_name()),
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"UIKit",
|
|
"AddressBook",
|
|
],
|
|
weak_sdk_frameworks = [
|
|
"PassKit",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|