Files
vendor_strix/build/soong/android/variable.go
Paul Keith 10084bf867 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
2018-02-17 09:08:28 +00:00

24 lines
588 B
Go

package android
type Product_variables struct {
Needs_text_relocations struct {
Cppflags []string
}
Uses_generic_camera_parameter_library struct {
Srcs []string
}
Uses_qcom_bsp_legacy struct {
Cppflags []string
}
Target_shim_libs struct {
Cppflags []string
}
}
type ProductVariables struct {
Uses_generic_camera_parameter_library *bool `json:",omitempty"`
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"`
}