Searched refs:testProperties (Results 1 – 7 of 7) sorted by relevance
/build/soong/python/ |
D | test.go | 62 testProperties TestProperties member 70 return append(test.binaryDecorator.bootstrapperProps(), &test.testProperties) 74 test.testConfig = tradefed.AutoGenPythonBinaryHostTestConfig(ctx, test.testProperties.Test_config, 75 test.testProperties.Test_config_template, test.binaryDecorator.binaryProperties.Test_suites, 85 dataSrcPaths := android.PathsForModuleSrc(ctx, test.testProperties.Data)
|
D | androidmk.go | 72 entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(p.testProperties.Test_options.Unit_test))
|
/build/soong/java/ |
D | robolectric.go | 72 testProperties testProperties member 89 return r.testProperties.Test_suites 118 r.testConfig = tradefed.AutoGenRobolectricTestConfig(ctx, r.testProperties.Test_config, 119 r.testProperties.Test_config_template, r.testProperties.Test_suites, 120 r.testProperties.Auto_gen_config) 121 r.data = android.PathsForModuleSrc(ctx, r.testProperties.Data) 204 for _, data := range android.PathsForModuleSrc(ctx, r.testProperties.Data) { 334 &module.testProperties) 339 module.testProperties.Test_suites = []string{"robolectric-tests"}
|
D | java.go | 699 type testProperties struct { struct 756 testProperties testProperties member 791 if len(j.testProperties.Jni_libs) > 0 { 794 ctx.AddFarVariationDependencies(sharedLibVariations, jniLibTag, j.testProperties.Jni_libs...) 806 if j.testProperties.Test_options.Unit_test == nil && ctx.Host() { 808 …defaultUnitTest := !inList("tradefed", j.properties.Libs) && !inList("cts", j.testProperties.Test_… 809 j.testProperties.Test_options.Unit_test = proptools.BoolPtr(defaultUnitTest) 811 …j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.testProperties.Test_config, j.testProperties.… 812 …j.testProperties.Test_suites, j.testProperties.Auto_gen_config, j.testProperties.Test_options.Unit… 814 j.data = android.PathsForModuleSrc(ctx, j.testProperties.Data) [all …]
|
D | androidmk.go | 156 testSuiteComponent(entries, j.testProperties.Test_suites) 162 if !BoolDefault(j.testProperties.Auto_gen_config, true) { 165 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", j.testProperties.Test_mainline_modules...) 166 if Bool(j.testProperties.Test_options.Unit_test) { 446 testSuiteComponent(entries, a.testProperties.Test_suites) 452 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", a.testProperties.Test_mainline_modules...) 673 testSuiteComponent(entries, a.testProperties.Test_suites)
|
D | app_import.go | 482 testProperties testProperties member 494 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) 507 module.AddProperties(&module.testProperties)
|
D | app.go | 951 testProperties testProperties member 976 for _, module := range a.testProperties.Test_mainline_modules { 980 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, 981 …a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testPropert… 983 …a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_confi… 984 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) 1049 &module.testProperties)
|