diff options
Diffstat (limited to 'android/variable.go')
-rw-r--r-- | android/variable.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/android/variable.go b/android/variable.go index af414cbe..4cd53134 100644 --- a/android/variable.go +++ b/android/variable.go @@ -62,6 +62,11 @@ type variableProperties struct { Cflags []string } + // Product_is_iot is true for Android Things devices. + Product_is_iot struct { + Cflags []string + } + // treble_linker_namespaces is true when the system/vendor linker namespace separation is // enabled. Treble_linker_namespaces struct { @@ -201,6 +206,8 @@ type productVariables struct { Override_rs_driver *string `json:",omitempty"` + Product_is_iot *bool `json:",omitempty"` + DeviceKernelHeaders []string `json:",omitempty"` DistDir *string `json:",omitempty"` |