summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Parsons <cparsons@google.com>2021-11-10 23:00:00 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-11-10 23:00:00 +0000
commita477870b855e519c64d8084c5b2ee894242bb19c (patch)
tree29d367167ef82e87947d57999fef3370a76007bd
parent27e9d0ee6d0e3eb9426542c12697532681b8ed3a (diff)
parent68bda98d4444091f87a74bdf3fc1ee2eeb080b3b (diff)
downloadx86_64-linux-glibc2.17-4.8-a477870b855e519c64d8084c5b2ee894242bb19c.tar.gz
Add filegroup BUILD file for glibc am: fb4e6a9f99 am: 6fd10926dd am: 71b0084bdb am: 68bda98d44
Original change: https://android-review.googlesource.com/c/platform/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/+/1887376 Change-Id: Ia5adb34fbbd779e2dc4498c4b2f496cc19347574
-rw-r--r--BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..697b5a9
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,13 @@
+# NOTE: THIS FILE IS EXPERIMENTAL FOR THE BAZEL MIGRATION AND NOT USED FOR
+# YOUR BUILDS CURRENTLY.
+#
+# It is not yet the source of truth for your build. If you're looking to modify
+# the build file, modify the Android.bp file instead. Do *not* modify this file
+# unless you have coordinated with the team managing the Soong to Bazel
+# migration.
+
+filegroup(
+ name = "tools",
+ srcs = glob(["**/**"]),
+ visibility = ["//prebuilts/clang/host/linux-x86:__pkg__"],
+)