diff options
author | 2024-01-12 00:08:30 +0000 | |
---|---|---|
committer | 2024-01-12 01:02:45 +0000 | |
commit | 9272dccb1ea96dfbf0f8a0a1488a09ca9af11f15 (patch) | |
tree | cee49063a0dfcdf35cc5417794efbafffbf41281 /java/java.go | |
parent | d06bdb031042ea448cc2a34fae9ccc4a50f63434 (diff) |
Add defaults support for bootclasspath_fragment module type
This change transforms the bootclsspath_fragment module into a
defaultable module, in order to modify the "art-bootclasspath-fragment"
module definition based on the build flag in
https://r.android.com/2897389
Test: m nothing
Bug: 315027929
Change-Id: I01ba7b15e4fcdea9bd31c369110a3c9ee38bc9f6
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go index 4eeded386..c5a414250 100644 --- a/java/java.go +++ b/java/java.go @@ -2726,6 +2726,8 @@ func DefaultsFactory() android.Module { &LintProperties{}, &appTestHelperAppProperties{}, &JavaApiLibraryProperties{}, + &bootclasspathFragmentProperties{}, + &SourceOnlyBootclasspathProperties{}, ) android.InitDefaultsModule(module) |