Home
last modified time | relevance | path

Searched refs:configs (Results 1 – 9 of 9) sorted by relevance

/build/make/core/tasks/
Ddevice-tests.mk22 device-tests-configs-zip := $(PRODUCT_OUT)/device-tests_configs.zip
26 $(device-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-tests-list-zip) $(device-tests-configs-zip…
34 grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true
41 grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true
43 $(hide) $(SOONG_ZIP) -d -o $(device-tests-configs-zip) \
44 -P host -C $(HOST_OUT) -l $@-host-test-configs.list \
45 -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list
52 rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \
56 …evice-tests, $(device-tests-zip) $(device-tests-list-zip) $(device-tests-configs-zip) $(device_tes…
Dgeneral-tests.mk57 …(PRIVATE_INTERMEDIATES_DIR)/host.list > $(PRIVATE_INTERMEDIATES_DIR)/host-test-configs.list || true
58 …VATE_INTERMEDIATES_DIR)/target.list > $(PRIVATE_INTERMEDIATES_DIR)/target-test-configs.list || true
70 -P host -C $(HOST_OUT) -l $(PRIVATE_INTERMEDIATES_DIR)/host-test-configs.list \
71 -P target -C $(PRODUCT_OUT) -l $(PRIVATE_INTERMEDIATES_DIR)/target-test-configs.list
/build/soong/cc/
Dtest.go390 var configs []tradefed.Config
392configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param…
395configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.Root…
399configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.Root…
403configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.Stop…
406 configs = append(configs, tradefed.Option{Name: "not-shardable", Value: "true"})
409configs = append(configs, tradefed.Option{Name: "run-test-as", Value: String(test.Properties.Test_…
412 configs = append(configs, tradefed.Option{Name: "test-suite-tag", Value: tag})
420configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suit…
428configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suit…
[all …]
/build/soong/tradefed/
Dautogen.go110 …ctx android.ModuleContext, output android.WritablePath, template string, configs []Config, testIns…
111 …autogenTemplateWithNameAndOutputFile(ctx, ctx.ModuleName(), output, template, configs, "", testIns…
114 …oduleContext, name string, output android.WritablePath, template string, configs []Config, testIns…
115 autogenTemplateWithNameAndOutputFile(ctx, name, output, template, configs, "", testInstallBase)
118 …oduleContext, name string, output android.WritablePath, template string, configs []Config, outputF…
120 for _, config := range configs {
176 …testConfigTemplateProp *string, testSuites []string, configs []Config, autoGenConfig *bool) androi…
181 autogenTemplate(ctx, autogenPath, templatePath.String(), configs, "")
183 autogenTemplate(ctx, autogenPath, "${NativeBenchmarkTestConfigTemplate}", configs, "")
292 …string, manifest android.Path, testSuites []string, autoGenConfig *bool, configs []Config) android…
[all …]
/build/make/core/
Dproduct_config.rbc105 configs = {top_pcm_name: (top_pcm, None, [], False)} # All known PCMs
119 pcm, cfg, c, _ = configs[name]
137 # Now we know everything about this PCM, record it in 'configs'.
141 configs[name] = (pcm, __h_cfg(handle), children.keys(), False)
152 if child_name not in configs:
153 configs[child_name] = (children[child_name], None, [], False)
170 pcm, cfg, children_names, ready = configs[pcm_name]
182 if not configs[child_name][3]:
185 _substitute_inherited(configs, pcm_name, cfg)
186 _percolate_inherited(configs, pcm_name, cfg, children_names)
[all …]
/build/soong/cmd/extract_apks/
Dmain_test.go36 configs []testConfigDesc member
121 configs: []testConfigDesc{
213 configs: []testConfigDesc{
242 configs: []testConfigDesc{
259 for _, config := range testCase.configs {
328 configs: []testConfigDesc{
413 for _, config := range testCase.configs {
/build/soong/scripts/
Dmanifest_check.py247 def load_dexpreopt_configs(configs): argument
251 if configs is None:
252 configs = []
254 for config in configs:
/build/soong/java/
Ddexpreopt_config.go84 configs := map[string]*bootImageConfig{
90 for _, c := range configs {
133 return configs
Dapp.go963 var configs []tradefed.Config
977configs = append(configs, tradefed.Option{Name: "config-descriptor:metadata", Key: "mainline-param…
981 …_template, a.manifestPath, a.testProperties.Test_suites, a.testProperties.Auto_gen_config, configs)