mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-01 16:06:59 +00:00
42 lines
1.3 KiB
Python
Vendored
42 lines
1.3 KiB
Python
Vendored
load("//Config:buck_rule_macros.bzl", "static_library")
|
|
|
|
static_library(
|
|
name = "Stripe",
|
|
srcs = glob([
|
|
"Sources/*.m",
|
|
]),
|
|
headers = glob([
|
|
"Sources/*.h",
|
|
], exclude = ["Sources/Stripe.h"]),
|
|
exported_headers = [
|
|
"Sources/STPAddress.h",
|
|
"Sources/STPPaymentCardTextField.h",
|
|
"Sources/STPAPIClient.h",
|
|
"Sources/STPAPIClient+ApplePay.h",
|
|
"Sources/STPAPIResponseDecodable.h",
|
|
"Sources/STPPaymentConfiguration.h",
|
|
"Sources/STPCard.h",
|
|
"Sources/STPCardBrand.h",
|
|
"Sources/STPCardParams.h",
|
|
"Sources/STPToken.h",
|
|
"Sources/STPBankAccount.h",
|
|
"Sources/STPBankAccountParams.h",
|
|
"Sources/STPBINRange.h",
|
|
"Sources/STPCardValidator.h",
|
|
"Sources/STPCardValidationState.h",
|
|
"Sources/STPCustomer.h",
|
|
"Sources/STPFormEncodable.h",
|
|
"Sources/STPPaymentMethod.h",
|
|
"Sources/STPPhoneNumberValidator.h",
|
|
"Sources/STPPostalCodeValidator.h",
|
|
"Sources/STPSource.h",
|
|
"Sources/STPBlocks.h",
|
|
"Sources/StripeError.h",
|
|
"Sources/STPBackendAPIAdapter.h",
|
|
],
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
|
|
],
|
|
)
|