aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/android/emulator/BUILD.tools
blob: af867cd2305b1a6bcf400c50153c26da4b6e913e (plain)
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
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",
)

alias(
    name = "empty_snapshot_fs",
    actual = "@androidsdk//:empty_snapshot_fs",
)

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"],
)