diff options
author | 2024-03-08 04:20:15 +0000 | |
---|---|---|
committer | 2024-03-21 18:04:53 +0000 | |
commit | aa1b7c912407cb4ce10979b6a31f443c32191ade (patch) | |
tree | cb449175bebebf4137bc4e1d9777db39fe776481 /android/variable.go | |
parent | c36d579c2bb0d59e5b9455affbd46519b73ce8cd (diff) |
Convert BuildIgnoreApexContritbutions variable to a boolean
The ignore list is burdensome to maintain once we start adding the
module sdk contents to apex_contributions. Convert the variable to a
boolean. When set to true, all contents in `apex_contributions` will be
ignored
Bug: 308187268
Test: m nothing on aosp,google and google_fullmte devices
Ignore-AOSP-first: CL topic does a cleanup of an internal only denylist
Change-Id: Ibdd1e0d0d4f08f4f5251b9c4baa1aaf42e7df34f
Merged-In: Ibdd1e0d0d4f08f4f5251b9c4baa1aaf42e7df34f
(cherry picked from commit f3df7305d653471c70d131177e773b4723247e3a)
Diffstat (limited to 'android/variable.go')
-rw-r--r-- | android/variable.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/variable.go b/android/variable.go index 73f5bfd1f..7a49a6838 100644 --- a/android/variable.go +++ b/android/variable.go @@ -495,7 +495,7 @@ type ProductVariables struct { BuildFromSourceStub *bool `json:",omitempty"` - BuildIgnoreApexContributionContents []string `json:",omitempty"` + BuildIgnoreApexContributionContents *bool `json:",omitempty"` HiddenapiExportableStubs *bool `json:",omitempty"` |