summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Parsons <cparsons@google.com>2021-11-10 15:38:52 -0500
committerChris Parsons <cparsons@google.com>2021-11-10 15:41:23 -0500
commitfb4e6a9f99f6c790c02e64d03a64be83fdd9ccdf (patch)
tree29d367167ef82e87947d57999fef3370a76007bd
parentdeb26e050d19d8966936d37896701da4ecf83970 (diff)
downloadx86_64-linux-glibc2.17-4.8-fb4e6a9f99f6c790c02e64d03a64be83fdd9ccdf.tar.gz
Add filegroup BUILD file for glibc
This is required as the tools in this directory are a toolchain dependency for x86_64. Test: mixed_droid.sh in conjunction with other host-toolchain related changes. Change-Id: Icc23cfbf0abf3cfe0972bbdd42d230f5cb1a77eb
-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__"],
+)