
QTS is not used by atmel_mxt_ts and its compilation needs to be avoided. QTS as seperate ko is needed to enable this support. Change-Id: I6473355cb93a29ee3fd9282d7f42534feb89c202 Signed-off-by: Raviteja Tamatam <quic_travitej@quicinc.com>
41 рядки
692 B
Python
41 рядки
692 B
Python
load("//build/kernel/kleaf:kernel.bzl", "ddk_headers")
|
|
|
|
package(
|
|
default_visibility = [
|
|
"//visibility:public"],
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "goodix_ts_headers",
|
|
hdrs = glob([
|
|
"goodix_berlin_driver/*.h",
|
|
"qts/*.h"
|
|
]
|
|
)
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "nt36xxx_headers",
|
|
hdrs = glob([
|
|
"nt36xxx/*.h"
|
|
]
|
|
)
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "config_headers",
|
|
hdrs = glob([
|
|
"config/*.h"
|
|
]
|
|
),
|
|
includes = ["config"]
|
|
)
|
|
|
|
ddk_headers(
|
|
name = "touch_drivers_headers",
|
|
hdrs = [":goodix_ts_headers", ":nt36xxx_headers", ":config_headers"]
|
|
)
|
|
|
|
load(":target.bzl", "define_pineapple")
|
|
define_pineapple()
|