summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2021-07-01 19:56:56 -0700
committerYifan Hong <elsk@google.com>2021-09-03 13:17:36 -0700
commit709825323918ea7879bb7bc24d0be1ee09cb3217 (patch)
tree7c847b362c2cbb4563749383aa97b3692b65ceab
parent232075c185db837723cb959f6bf31ea9221f969b (diff)
downloadaoc-ipc-709825323918ea7879bb7bc24d0be1ee09cb3217.tar.gz
Bug: 192617687 Test: builds Change-Id: I0cc78e283920016ba79bc38e50921cb1924240e6
-rw-r--r--BUILD.bazel28
1 files changed, 28 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..fcd279c
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,28 @@
+# 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 = "headers",
+ srcs = glob([
+ "*.h",
+ ]),
+ visibility = [
+ "//private/google-modules/aoc:__subpackages__",
+ ],
+)
+
+filegroup(
+ name = "sources",
+ srcs = glob([
+ "*.c",
+ "*.h",
+ ]),
+ visibility = [
+ "//private/google-modules/aoc:__subpackages__",
+ ],
+)