diff options
Diffstat (limited to 'python/androidmk.go')
-rw-r--r-- | python/androidmk.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/androidmk.go b/python/androidmk.go index 20861cb8e..c1eaa5ebe 100644 --- a/python/androidmk.go +++ b/python/androidmk.go @@ -70,6 +70,11 @@ func (p *testDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) { if p.testProperties.Test_config != nil { fmt.Fprintln(w, "LOCAL_TEST_CONFIG :=", *p.testProperties.Test_config) + } else { + if p.testConfig != nil { + fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", + p.testConfig.String()) + } } }) base.subAndroidMk(ret, p.binaryDecorator.pythonInstaller) |