lineage: soong: Add var for linker shim libs

* To limit security exposure, we're forcing all devices
  to define shim libs with a TARGET_LD_SHIM_LIBS

Change-Id: Ic8722c42807429f2faa3546316c71c40533ce195
This commit is contained in:
Paul Keith
2018-02-15 21:46:00 +01:00
committed by Luca Stefani
parent 735c79cb4d
commit 10084bf867
2 changed files with 6 additions and 1 deletions

View File

@@ -9,6 +9,9 @@ type Product_variables struct {
Uses_qcom_bsp_legacy struct {
Cppflags []string
}
Target_shim_libs struct {
Cppflags []string
}
}
type ProductVariables struct {
@@ -16,4 +19,5 @@ type ProductVariables struct {
Specific_camera_parameter_library *string `json:",omitempty"`
Needs_text_relocations *bool `json:",omitempty"`
Uses_qcom_bsp_legacy *bool `json:",omitempty"`
Target_shim_libs *string `json:",omitempty"`
}