diff options
author | 2023-12-08 09:48:13 +0000 | |
---|---|---|
committer | 2023-12-08 09:48:13 +0000 | |
commit | 25c187cc7dfb70a88a8b4fade245fa24cc9e1dcf (patch) | |
tree | 904227f91afe1d420cc1f8b6af6b052ebc2f9035 /java/java_test.go | |
parent | 25861686fe434c5abae530258bdff4ba2e435ede (diff) | |
parent | 84b2589e6dc85d15af273b8a293ed7f064142af7 (diff) |
Merge changes from topic "aconfig_dump_map" into main
* changes:
Add aconfig flag support for android_app
Add aconfig flag value text file in aconfig_declarations provider
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/java_test.go b/java/java_test.go index 0c750ebe1..d4b056bc9 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -26,6 +26,7 @@ import ( "github.com/google/blueprint/proptools" + "android/soong/aconfig" "android/soong/android" "android/soong/cc" "android/soong/dexpreopt" @@ -47,6 +48,8 @@ var prepareForJavaTest = android.GroupFixturePreparers( cc.PrepareForTestWithCcBuildComponents, // Include all the default java modules. PrepareForTestWithDexpreopt, + // Include aconfig modules. + aconfig.PrepareForTestWithAconfigBuildComponents, ) func TestMain(m *testing.M) { |