-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
BUILD.tools
56 lines (46 loc) · 1.15 KB
/
BUILD.tools
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
package(default_visibility = ["//visibility:public"])
exports_files(["no_se_linux.properties"])
alias(
name = "emulator_arm",
actual = "@androidsdk//:emulator_arm",
)
alias(
name = "emulator_x86",
actual = "@androidsdk//:emulator_x86",
)
alias(
name = "emulator_x86_bios",
actual = "@androidsdk//:emulator_x86_bios",
)
alias(
name = "mksd",
actual = "@androidsdk//:mksd",
)
genrule(
name = "empty_snapshot_fs",
srcs = ["snapshots.img.zip"],
outs = ["snapshots.img"],
tools = ["@bazel_tools//tools/zip:zipper"],
cmd = "$(location @bazel_tools//tools/zip:zipper) x $< -d $(@D)",
)
filegroup(
name = "xvfb_support",
srcs = [
"@androidsdk//:emulator_shared_libs",
],
)
alias(
name = "sdk_path",
actual = "@androidsdk//:sdk_path",
)
# Unified launcher is not included with Bazel or the Android SDK. Instead, it
# comes from an external repository that must be set up in order for
# android_device to work.
alias(
name = "unified_launcher",
actual = "@android_test_support//tools/android/emulator:unified_launcher_head",
)
filegroup(
name = "shbase",
srcs = ["googletest.sh"],
)