-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBUILD
54 lines (50 loc) · 906 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
load(
"@build_bazel_rules_apple//apple:ios.bzl",
"ios_application",
"ios_unit_test",
)
objc_library(
name = "Sources",
srcs = [
"App.m",
"AppDelegate.m",
"main.m",
],
hdrs = [
"App.h",
"AppDelegate.h",
],
data = [
"//Example/Localization:localize_test",
],
deps = [
"//:SSTSmallStrings",
],
)
objc_library(
name = "app_test_lib",
testonly = True,
srcs = [
"AppTest.m",
],
deps = [
":Sources",
],
)
ios_unit_test(
name = "app_test",
minimum_os_version = "16.0",
deps = [
":app_test_lib",
],
)
ios_application(
name = "LocalizationExampleApp",
bundle_id = "com.example.localization-example",
families = [
"iphone",
],
infoplists = [":Info.plist"],
minimum_os_version = "16.0",
deps = [":Sources"],
)