diff options
author | 2024-09-04 00:03:20 +0000 | |
---|---|---|
committer | 2024-09-04 00:03:20 +0000 | |
commit | b11c99d0848da4e1177b8c460c1437cc7dbce9d1 (patch) | |
tree | 72c9630a7d2b453efef377bc693282a86cbff222 /android/module.go | |
parent | aebccc735a9173454faa7124ebf7a640cd9741d9 (diff) | |
parent | a574d535b50ed5f01162dddd3bfbfa495dcba876 (diff) |
Merge "Make overrides work in Soong" into main
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go index 7ce4e0535..6c89632e7 100644 --- a/android/module.go +++ b/android/module.go @@ -492,6 +492,10 @@ type commonProperties struct { // vintf_fragment Modules required from this module. Vintf_fragment_modules proptools.Configurable[[]string] `android:"path"` + + // List of module names that are prevented from being installed when this module gets + // installed. + Overrides []string } type distProperties struct { |