android_hardware_samsung/Android.bp
LuK1337 45823cea54
samsung: Make HAL header paths configurable through soong
$(call soong_config_set,samsungVars,target_specific_header_path,$(DEVICE_PATH)/include)

Change-Id: Ibdfd255efafd471e59dfec0860ace40c21a6e27f
2024-06-21 18:04:34 +02:00

24 lines
521 B
Plaintext

soong_namespace {
imports: [
"hardware/google/pixel",
"hardware/google/interfaces",
],
}
soong_config_module_type {
name: "samsung_header_path",
module_type: "cc_defaults",
config_namespace: "samsungVars",
value_variables: ["target_specific_header_path"],
properties: ["include_dirs"],
}
samsung_header_path {
name: "samsung_header_path_defaults",
soong_config_variables: {
target_specific_header_path: {
include_dirs: ["%s"],
},
},
}