
git-subtree-dir: qcom/opensource/audio-kernel git-subtree-mainline:99ab089c55
git-subtree-split:0ee387dfad
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/audio-kernel-ar tag: AUDIO.LA.9.0.r1-07400-lanai.0
51 lignes
1023 B
Python
51 lignes
1023 B
Python
package(
|
|
default_visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|
|
|
|
load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
|
|
|
|
ddk_headers(
|
|
name = "audio_common_headers",
|
|
hdrs = glob([
|
|
"include/asoc/*.h",
|
|
"include/bindings/*.h",
|
|
"include/dsp/*.h",
|
|
"include/ipc/*.h",
|
|
"include/soc/*.h"
|
|
]),
|
|
includes = ["include"]
|
|
)
|
|
ddk_headers(
|
|
name = "audio_uapi_headers",
|
|
hdrs = glob([
|
|
"include/uapi/audio/**/*.h"
|
|
]),
|
|
includes = ["include/uapi/audio"]
|
|
)
|
|
ddk_headers(
|
|
name = "audio_src_headers",
|
|
hdrs = glob([
|
|
"asoc/**/*.h",
|
|
"dsp/**/*.h",
|
|
"ipc/**/*.h",
|
|
"soc/**/*.h"
|
|
])
|
|
)
|
|
ddk_headers(
|
|
name = "audio_configs",
|
|
hdrs = glob([
|
|
"config/*.h"
|
|
]),
|
|
includes = ["config"]
|
|
)
|
|
ddk_headers(
|
|
name = "audio_headers",
|
|
hdrs = [":audio_common_headers", ":audio_uapi_headers", ":audio_src_headers", ":audio_configs"]
|
|
)
|
|
|
|
load(":build/audio_target.bzl", "define_audio_target")
|
|
|
|
define_audio_target()
|