summaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel22
1 files changed, 8 insertions, 14 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 01126b5..284adfd 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -1,30 +1,24 @@
-# 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.
+# SPDX-License-Identifier: GPL-2.0-or-later
load("//build/kernel/kleaf:kernel.bzl", "kernel_module")
kernel_module(
- name = "broadcom.slider",
+ name = "bluetooth.broadcom",
srcs = glob([
"**/*.c",
"**/*.h",
"Kbuild",
]) + [
- "//gs/google-modules/soc-modules:gs101_soc_headers",
+ "//private/google-modules/soc/gs:gs_soc_headers",
],
outs = [
"nitrous.ko",
],
- kernel_build = "//gs/google-modules/soc-modules:slider",
- kernel_module_deps = [
- "//gs/google-modules/soc-modules:gs101_soc",
- ],
+ kernel_build = "//private/google-modules/soc/gs:gs_kernel_build",
visibility = [
- "//gs/google-modules/soc-modules:__pkg__",
+ "//private/google-modules/soc/gs:__pkg__",
+ ],
+ deps = [
+ "//private/google-modules/soc/gs:gs_soc_module",
],
)