summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2021-07-01 19:57:28 -0700
committerYifan Hong <elsk@google.com>2021-09-03 13:17:37 -0700
commit318ac6f5c98578c87c158df576f1fd3af45f035f (patch)
tree094921d5ecc733ddc8230feddf3d075bdbe56495
parentf554a2304b0a483b04a17822a3cb1f958ce80edd (diff)
downloadbroadcom-318ac6f5c98578c87c158df576f1fd3af45f035f.tar.gz
Bug: 192617687 Test: builds Change-Id: I292ffcd77e0da29ec778e8b0e13e7345248b0a19
-rw-r--r--BUILD.bazel20
1 files changed, 20 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..91f32ce
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,20 @@
+# 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.
+
+load("//build/kleaf:kernel.bzl", "kernel_module")
+
+kernel_module(
+ name = "broadcom.cloudripper",
+ outs = [
+ "nitrous.ko",
+ ],
+ kernel_build = "//private/gs-google:cloudripper",
+ visibility = [
+ "//private/gs-google:__pkg__",
+ ],
+)