diff options
author | 2025-01-23 12:56:20 -0800 | |
---|---|---|
committer | 2025-01-23 12:56:20 -0800 | |
commit | 866ab39da69b9dd6defb39a064764fa3e0a6db23 (patch) | |
tree | 68aabc63b2d07236fa6dc4c92831378766205405 /android/module_info_json.go | |
parent | 4d78e0108b85354098811ec86307cc8d2550555f (diff) |
Convert android_app and android_test's module-info.json to soong
This produces the following diffs, which I beleive are benign:
https://paste.googleplex.com/5631028455276544
We need to convert these to soong so that you can run these tests
with atest in soong-only builds.
Bug: 389720048
Test: diff'd out/target/product/vsoc_x86_64/module-info.json
Change-Id: Ic25e14d2cfbb56d9527302baefa6f69f55f113ee
Diffstat (limited to 'android/module_info_json.go')
-rw-r--r-- | android/module_info_json.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/module_info_json.go b/android/module_info_json.go index d102dd2a2..27120ef6f 100644 --- a/android/module_info_json.go +++ b/android/module_info_json.go @@ -43,6 +43,7 @@ type ExtraModuleInfoJSON struct { CompatibilitySuites []string `json:"compatibility_suites,omitempty"` // $(sort $(ALL_MODULES.$(m).COMPATIBILITY_SUITES)) AutoTestConfig []string `json:"auto_test_config,omitempty"` // $(ALL_MODULES.$(m).auto_test_config) TestConfig []string `json:"test_config,omitempty"` // $(strip $(ALL_MODULES.$(m).TEST_CONFIG) $(ALL_MODULES.$(m).EXTRA_TEST_CONFIGS) + ExtraRequired []string `json:"-"` } type ModuleInfoJSON struct { |