* Soong product variable 'has_legacy_camera_hal1' Change-Id: I10800cba0c431297b5d7aad6e97d57a01232d73e Signed-off-by: Adrian DC <radian.dc@gmail.com>
33 lines
823 B
Go
33 lines
823 B
Go
package android
|
|
type Product_variables struct {
|
|
Has_legacy_camera_hal1 struct {
|
|
Cflags []string
|
|
}
|
|
Needs_text_relocations struct {
|
|
Cppflags []string
|
|
}
|
|
Target_shim_libs struct {
|
|
Cppflags []string
|
|
}
|
|
Uses_generic_camera_parameter_library struct {
|
|
Srcs []string
|
|
}
|
|
Uses_qcom_bsp_legacy struct {
|
|
Cppflags []string
|
|
}
|
|
Uses_qti_camera_device struct {
|
|
Cppflags []string
|
|
Shared_libs []string
|
|
}
|
|
}
|
|
|
|
type ProductVariables struct {
|
|
Has_legacy_camera_hal1 *bool `json:",omitempty"`
|
|
Needs_text_relocations *bool `json:",omitempty"`
|
|
Specific_camera_parameter_library *string `json:",omitempty"`
|
|
Target_shim_libs *string `json:",omitempty"`
|
|
Uses_generic_camera_parameter_library *bool `json:",omitempty"`
|
|
Uses_qcom_bsp_legacy *bool `json:",omitempty"`
|
|
Uses_qti_camera_device *bool `json:",omitempty"`
|
|
}
|