diff options
author | 2025-01-13 00:39:47 -0800 | |
---|---|---|
committer | 2025-01-13 00:39:47 -0800 | |
commit | 0d02c06f24e6958b30062387b0e57d364a67f3a1 (patch) | |
tree | 2ae87aeeb8e8a7086dcdeff1fa613edc94882029 /apex/apex_singleton.go | |
parent | a8c8e20d0da3c6231906c225099f38d983ade041 (diff) |
Revert "Collect dependencies of updatable apexes only for AOSP APEX"
Revert submission 3444766-non-aosp-allowed-deps
Reason for revert: <Droidmonitor created revert due to b/389580262.Will be verified through ABTD for standard investigation.>
Reverted changes: /q/submissionid:3444766-non-aosp-allowed-deps
Change-Id: I13e0e5cc12c63601995b010db34ebc71efab27f0
Diffstat (limited to 'apex/apex_singleton.go')
-rw-r--r-- | apex/apex_singleton.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apex/apex_singleton.go b/apex/apex_singleton.go index 263e0a52c..7b3acb509 100644 --- a/apex/apex_singleton.go +++ b/apex/apex_singleton.go @@ -18,7 +18,6 @@ package apex import ( "encoding/json" - "strings" "github.com/google/blueprint" @@ -95,9 +94,7 @@ func (s *apexDepsInfoSingleton) GenerateBuildActions(ctx android.SingletonContex apexInfo, _ := android.OtherModuleProvider(ctx, module, android.ApexInfoProvider) if path := binaryInfo.FlatListPath(); path != nil { if binaryInfo.Updatable() || apexInfo.Updatable { - if strings.HasPrefix(module.String(), "com.android.") { - updatableFlatLists = append(updatableFlatLists, path) - } + updatableFlatLists = append(updatableFlatLists, path) } } } |