2019-08-26 04:25:02 +04:00

23 lines
493 B
Python
Vendored

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "libphonenumber",
srcs = glob([
"Sources/*.m",
]),
headers = glob([
"Sources/*.h",
]),
exported_headers = [
"Sources/NBPhoneNumberDefines.h",
"Sources/NBPhoneNumber.h",
"Sources/NBPhoneNumberUtil.h",
"Sources/NBAsYouTypeFormatter.h",
],
deps = [
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
],
)