summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Dagostino <kevindagostino@google.com>2022-12-06 05:04:56 +0000
committerKevin Dagostino <kevindagostino@google.com>2022-12-11 21:23:01 +0000
commitd060661f67b6b14fe578ff8fdbe99a0f39c883ad (patch)
tree8f1725a669b0030d6a2a75dab8915271b98a77e1
parenteacf72cfd915133ea68508193422338dae9d4b6a (diff)
downloadruntime-d060661f67b6b14fe578ff8fdbe99a0f39c883ad.tar.gz
Add BUILD file prebuilt adb to be used in bazel tradefed tests
Adding this BUILD file will allow the tradefed test rules to access the prebuilt adb. Test: b build //prebuilts/runtime:prebuilt-runtime-adb Change-Id: Ic505be39c32bd4173cb180c079e9bb7b89217505
-rw-r--r--BUILD.bazel6
1 files changed, 6 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 00000000..86539a69
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,6 @@
+package(default_visibility = ["//visibility:public"])
+
+filegroup(
+ name = "prebuilt-runtime-adb",
+ srcs = ["adb"],
+)