* To limit security exposure, we're forcing all devices to define shim libs with a TARGET_LD_SHIM_LIBS Change-Id: Ic8722c42807429f2faa3546316c71c40533ce195
24 lines
588 B
Go
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"`
|
|
}
|