
git-subtree-dir: qcom/opensource/wlan/platform git-subtree-mainline:c74a556fc1
git-subtree-split:54afb87acc
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom-opensource/wlan/platform tag: LA.VENDOR.14.3.0.r1-17300-lanai.QSSI15.0
35 lines
658 B
Python
35 lines
658 B
Python
load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
|
|
load(":wlan_platform_modules.bzl", "define_modules")
|
|
|
|
|
|
package(
|
|
default_visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "wlan-platform-headers",
|
|
hdrs = glob([
|
|
"inc/*.h",
|
|
]),
|
|
includes = ["inc"],
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "wlan-platform-private-headers",
|
|
hdrs = glob([
|
|
"cnss2/*.h",
|
|
"cnss_utils/*.h",
|
|
"icnss2/*.h"
|
|
]),
|
|
includes = ["cnss2", "cnss_utils", "icnss2"],
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "all-wlan-platform-headers",
|
|
hdrs = [":wlan-platform-headers", ":wlan-platform-private-headers"],
|
|
)
|
|
|
|
define_modules()
|