-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
BUILD.bazel
62 lines (55 loc) · 1.87 KB
/
BUILD.bazel
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
55
56
57
58
59
60
61
62
load("@rules_jvm_external//:defs.bzl", "artifact")
load("//:common_defs.bzl", "minSdkVersion", "targetSdkVersion")
licenses(["notice"]) # Apache 2.0
android_library(
name = "MultiWindowSampleLib",
srcs = glob(["app/src/main/**/*.java"]),
custom_package = "com.example.android.testing.espresso.MultiWindowSample",
manifest = "app/src/main/AndroidManifest.xml",
resource_files = glob(["app/src/main/res/**/*"]),
deps = [
artifact("androidx.annotation:annotation"),
artifact("com.google.guava:guava"),
],
)
android_binary(
name = "MultiWindowSample",
custom_package = "com.example.android.testing.espresso.MultiWindowSample",
manifest = "app/src/main/AppManifest.xml",
manifest_values = {
"minSdkVersion": minSdkVersion,
"targetSdkVersion": targetSdkVersion,
},
deps = [":MultiWindowSampleLib"],
)
android_library(
name = "MultiWindowSampleTestLib",
srcs = glob(["app/src/androidTest/**/*.java"]),
custom_package = "com.example.android.testing.espresso.MultiWindowSample.test",
deps = [
":MultiWindowSampleLib",
"//:test_deps",
],
)
android_binary(
name = "MultiWindowSampleTest",
custom_package = "com.example.android.testing.espresso.MultiWindowSample.test",
instruments = ":MultiWindowSample",
manifest = "app/src/androidTest/AndroidManifest.xml",
manifest_values = {
"minSdkVersion": minSdkVersion,
"targetSdkVersion": targetSdkVersion,
},
deps = [":MultiWindowSampleTestLib"],
)
API_LEVELS = [
"19_x86",
"21_x86",
"22_x86",
"23_x86",
]
[android_instrumentation_test(
name = "MultiWindowSampleInstrumentationTest_%s" % API_LEVEL,
target_device = "@android_test_support//tools/android/emulated_devices/generic_phone:android_%s_qemu2" % API_LEVEL,
test_app = ":MultiWindowSampleTest",
) for API_LEVEL in API_LEVELS]