summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2021-07-01 19:56:59 -0700
committerYifan Hong <elsk@google.com>2021-09-03 13:17:39 -0700
commit27a4210d06ada3c8e09c03dd9d7a531865a5aad6 (patch)
treeed4ea6db0e39d81b0cb9154e251604b790a3ce02 /common
parent187e9ab8e71a5e648a3db379ceef43818afc7e1f (diff)
downloadgpu-27a4210d06ada3c8e09c03dd9d7a531865a5aad6.tar.gz
Kleaf: add GPU kernel modules for cloudripper
Bug: 192617687 Test: builds Change-Id: I6f2a6b00db250a13b2b925ac30caf65f4a8c400c
Diffstat (limited to 'common')
-rw-r--r--common/BUILD.bazel17
1 files changed, 17 insertions, 0 deletions
diff --git a/common/BUILD.bazel b/common/BUILD.bazel
new file mode 100644
index 0000000..b7506a1
--- /dev/null
+++ b/common/BUILD.bazel
@@ -0,0 +1,17 @@
+# 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/gpu:__subpackages__",
+ ],
+)