summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2021-07-01 19:56:56 -0700
committerWill McVicker <willmcvicker@google.com>2022-04-22 10:57:30 -0700
commit5d940becd981f7415c88a0c1749db2aa5377611f (patch)
tree7c847b362c2cbb4563749383aa97b3692b65ceab
parente22a42a610e253a565ce023fa4a3967386ca7a62 (diff)
downloadaoc-ipc-5d940becd981f7415c88a0c1749db2aa5377611f.tar.gz
Kleaf: add aoc_ipc headers and sources
Bug: 192617687 Test: builds Change-Id: I0cc78e283920016ba79bc38e50921cb1924240e6 Signed-off-by: Will McVicker <willmcvicker@google.com>
-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__",
+ ],
+)