diff options
author | 2022-08-12 18:49:20 +0800 | |
---|---|---|
committer | 2022-08-17 01:19:15 +0800 | |
commit | 0ac5a431a98d6f0fbc9434d4c7955981117f781f (patch) | |
tree | 8e79a8eaa30d9b33e5d69508ef12f4d6e1f8ee6c /python/androidmk.go | |
parent | 63e738ffe0cb7328d75e288ee0356da5e521c455 (diff) |
Move common test_options properties into the android package
Multiple modules (e.g. java, cc, python, rust) define the `test_options`
field. Extract the common properties in test_options to share across
different test rules.
Bug: 240928948
Test: `refreshmod` and diff with original module-info.json
Change-Id: I404a7a157b4ccaa53d800ee2217559ff695bd825
Diffstat (limited to 'python/androidmk.go')
-rw-r--r-- | python/androidmk.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/androidmk.go b/python/androidmk.go index 233d8679f..7dc471397 100644 --- a/python/androidmk.go +++ b/python/androidmk.go @@ -69,7 +69,7 @@ func (p *testDecorator) AndroidMk(base *Module, entries *android.AndroidMkEntrie entries.AddStrings("LOCAL_TEST_DATA", android.AndroidMkDataPaths(p.data)...) - entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(p.testProperties.Test_options.Unit_test)) + p.testProperties.Test_options.SetAndroidMkEntries(entries) }) base.subAndroidMk(entries, p.binaryDecorator.pythonInstaller) } |