blob: 37eb7542c0b4e8ab2f0476e1ed69de53a9076833 [file] [log] [blame]
# 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 = "sec.cloudripper",
srcs = glob([
"**/*.c",
"**/*.h",
"Kbuild",
]) + [
"//private/google-modules/touch/common:headers",
"//private/google-modules/display/samsung:headers",
],
outs = [
"sec_touch.ko",
],
kernel_build = "//private/gs-google:cloudripper",
kernel_module_deps = [
"//private/google-modules/touch/common:common.cloudripper",
],
visibility = [
"//private/gs-google:__pkg__",
],
)