Lines Matching refs:Properties
186 return Bool(test.Properties.Test_per_src)
190 return test.baseCompiler.Properties.Srcs
198 stem := test.binaryDecorator.Properties.Stem
203 test.baseCompiler.Properties.Srcs = []string{src}
204 test.binaryDecorator.Properties.Stem = StringPtr(name)
208 test.baseCompiler.Properties.Srcs = nil
209 test.binaryDecorator.Properties.Stem = StringPtr("")
245 allTests.(*Module).Properties.PreventInstall = true
246 allTests.(*Module).Properties.HideFromMake = true
339 Properties TestBinaryProperties member
347 props = append(props, &test.Properties)
354 deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...)
355 deps.DataBins = append(deps.DataBins, test.Properties.Data_bins...)
372 if ctx.Host() && Bool(test.Properties.Test_options.Unit_test) {
375 …moduleInfoJSON.TestOptionsTags = append(moduleInfoJSON.TestOptionsTags, test.Properties.Test_optio…
376 …moduleInfoJSON.TestMainlineModules = append(moduleInfoJSON.TestMainlineModules, test.Properties.Te…
385 if Bool(test.Properties.Test_per_src) {
386 moduleInfoJSON.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
389 …moduleInfoJSON.DataDependencies = append(moduleInfoJSON.DataDependencies, test.Properties.Data_bin…
408 dataSrcPaths := android.PathsForModuleSrc(ctx, test.Properties.Data)
440 configs := getTradefedConfigOptions(ctx, &test.Properties, test.isolated(ctx), ctx.Device())
443 TestConfigProp: test.Properties.Test_config,
444 TestConfigTemplateProp: test.Properties.Test_config_template,
447 TestRunnerOptions: test.Properties.Test_options.Test_runner_options,
448 AutoGenConfig: test.Properties.Auto_gen_config,
454 …test.extraTestConfigs = android.PathsForModuleSrc(ctx, test.Properties.Test_options.Extra_test_con…
459 if !Bool(test.Properties.No_named_install_directory) {
461 } else if String(test.binaryDecorator.baseInstaller.Properties.Relative_install_path) == "" {
465 if ctx.Host() && test.gtest() && test.Properties.Test_options.Unit_test == nil {
466 test.Properties.Test_options.Unit_test = proptools.BoolPtr(true)
636 Properties BenchmarkProperties member
647 props = append(props, &benchmark.Properties)
658 for _, d := range android.PathsForModuleSrc(ctx, benchmark.Properties.Data) {
663 if Bool(benchmark.Properties.Require_root) {
667 TestConfigProp: benchmark.Properties.Test_config,
668 TestConfigTemplateProp: benchmark.Properties.Test_config_template,
669 TestSuites: benchmark.Properties.Test_suites,
671 AutoGenConfig: benchmark.Properties.Auto_gen_config,
686 if len(benchmark.Properties.Test_suites) > 0 {
687 …mpatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, benchmark.Properties.Test_suites...)