Lines Matching refs:moduleInfoJSON
324 func (test *testDecorator) moduleInfoJSON(ctx android.ModuleContext, moduleInfoJSON *android.Module… func
325 if android.PrefixInList(moduleInfoJSON.CompatibilitySuites, "mts-") &&
326 !android.InList("mts", moduleInfoJSON.CompatibilitySuites) {
327 moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, "mts")
371 func (test *testBinary) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.ModuleInfoJSON) { func
373 moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, "host-unit-tests")
375 …moduleInfoJSON.TestOptionsTags = append(moduleInfoJSON.TestOptionsTags, test.Properties.Test_optio…
376 …moduleInfoJSON.TestMainlineModules = append(moduleInfoJSON.TestMainlineModules, test.Properties.Te…
379 moduleInfoJSON.AutoTestConfig = []string{"true"}
381 moduleInfoJSON.TestConfig = append(moduleInfoJSON.TestConfig, test.testConfig.String())
383 moduleInfoJSON.TestConfig = append(moduleInfoJSON.TestConfig, test.extraTestConfigs.Strings()...)
386 moduleInfoJSON.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
389 …moduleInfoJSON.DataDependencies = append(moduleInfoJSON.DataDependencies, test.Properties.Data_bin…
392 …moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, test.InstallerProp…
394 moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, "null-suite")
397 test.binaryDecorator.moduleInfoJSON(ctx, moduleInfoJSON)
398 test.testDecorator.moduleInfoJSON(ctx, moduleInfoJSON)
399 moduleInfoJSON.Class = []string{"NATIVE_TESTS"}
579 func (test *testLibrary) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.ModuleInfoJSON) { func
581 …moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, test.InstallerProp…
584 test.libraryDecorator.moduleInfoJSON(ctx, moduleInfoJSON)
585 test.testDecorator.moduleInfoJSON(ctx, moduleInfoJSON)
682 func (benchmark *benchmarkDecorator) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.Modu… func
683 benchmark.binaryDecorator.moduleInfoJSON(ctx, moduleInfoJSON)
685 moduleInfoJSON.Class = []string{"NATIVE_TESTS"}
687 …moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, benchmark.Properti…
689 moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, "null-suite")
692 if android.PrefixInList(moduleInfoJSON.CompatibilitySuites, "mts-") &&
693 !android.InList("mts", moduleInfoJSON.CompatibilitySuites) {
694 moduleInfoJSON.CompatibilitySuites = append(moduleInfoJSON.CompatibilitySuites, "mts")
699 moduleInfoJSON.AutoTestConfig = []string{"true"}
701 moduleInfoJSON.TestConfig = []string{benchmark.testConfig.String()}