diff options
author | 2024-11-01 22:01:14 +0000 | |
---|---|---|
committer | 2024-11-01 22:01:14 +0000 | |
commit | 7e0fdef24294aec6b43fc524d5d19e6cdb5be0fc (patch) | |
tree | b900dc65932749ce73e03a59aaf89d2d143c0a40 /android/config.go | |
parent | 27777d8b8bbcc97b052727288dee4a15eeb9b622 (diff) | |
parent | c57171660c033d587510b8bfd1781c95f27fe45f (diff) |
Merge "Autogenerate a soong module to build odm.img" into main
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index 1ed6871f4..16d77db6b 100644 --- a/android/config.go +++ b/android/config.go @@ -1549,6 +1549,10 @@ func (c *deviceConfig) OdmPath() string { return "odm" } +func (c *deviceConfig) BuildingOdmImage() bool { + return proptools.Bool(c.config.productVariables.BuildingOdmImage) +} + func (c *deviceConfig) ProductPath() string { if c.config.productVariables.ProductPath != nil { return *c.config.productVariables.ProductPath |