/build/make/core/ |
D | distdir.mk | 36 define dist-for-goals 55 $(KATI_obsolete_var dist-for-goals,Cannot be used after dist-write-file) \ 69 .KATI_READONLY := dist-for-goals dist-write-file
|
D | main.mk | 1509 $(call dist-for-goals, userdataimage, $(BUILT_USERDATAIMAGE_TARGET)) 1646 $(call dist-for-goals, dist_files, $(SOONG_OUT_DIR)/module_bp_java_deps.json) 1647 $(call dist-for-goals, dist_files, $(PRODUCT_OUT)/module-info.json) 1664 $(call dist-for-goals,apps_only, $(apps_only_installed_files)) 1669 $(call dist-for-goals,apps_only, $(apps_only_bundle_files)) 1677 $(call dist-for-goals,lint-check, $(apps_only_lint_report_files)) 1685 $(call dist-for-goals,apps_only, $(apps_only_dist_built_files)) 1689 $(call dist-for-goals,apps_only, $(JACOCO_REPORT_CLASSES_ALL)) 1693 $(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP)) 1696 $(call dist-for-goals,apps_only, $(PROGUARD_USAGE_ZIP)) [all …]
|
/build/soong/android/ |
D | makevars.go | 76 DistForGoals(goals []string, paths ...Path) 81 DistForGoalsWithFilename(goals []string, path Path, filename string) 210 goals []string member 285 return lessArr(dists[i].goals, dists[j].goals) || lessArr(dists[i].paths, dists[j].paths) 402 strings.Join(dist.goals, " "), strings.Join(dist.paths, " ")) 445 func (c *makeVarsContext) addDist(goals []string, paths []string) { 447 goals: goals, 484 func (c *makeVarsContext) DistForGoals(goals []string, paths ...Path) { 485 c.addDist(goals, Paths(paths).Strings()) 488 func (c *makeVarsContext) DistForGoalsWithFilename(goals []string, path Path, filename string) { [all …]
|
D | androidmk.go | 288 func (d *distContributions) getCopiesForGoals(goals string) *copiesForGoals { 289 copiesForGoals := &copiesForGoals{goals: goals} 299 goals string member 361 goals := strings.Join(dist.Targets, " ") 384 panic(fmt.Errorf(errorMessage, mod, goals, tag, name, tagPaths)) 387 copiesForGoals := distContributions.getCopiesForGoals(goals) 436 ret = append(ret, fmt.Sprintf(".PHONY: %s\n", d.goals)) 441 fmt.Sprintf("$(call dist-for-goals,%s,%s:%s)\n", d.goals, c.from.String(), c.dest))
|
/build/make/core/tasks/ |
D | module-info.mk | 31 $(call dist-for-goals, general-tests, $(MODULE_INFO_JSON)) 32 $(call dist-for-goals, droidcore-unbundled, $(MODULE_INFO_JSON))
|
D | vendor_snapshot.mk | 23 $(call dist-for-goals, vendor-snapshot, $(SOONG_VENDOR_SNAPSHOT_ZIP)) 28 $(call dist-for-goals, vendor-fake-snapshot, $(SOONG_VENDOR_FAKE_SNAPSHOT_ZIP):fake/$(notdir $(SOON…
|
D | ide.mk | 17 define filter-ide-goals 26 eclipse_project_goals := $(call filter-ide-goals,ECLIPSE)
|
D | csuite.mk | 23 $(call dist-for-goals, csuite, $(compatibility_zip))
|
D | sts.mk | 24 $(call dist-for-goals, sts, $(compatibility_zip))
|
D | recovery_snapshot.mk | 23 $(call dist-for-goals, recovery-snapshot, $(SOONG_RECOVERY_SNAPSHOT_ZIP))
|
D | catbox.mk | 24 $(call dist-for-goals, catbox, $(compatibility_zip))
|
D | cts_root.mk | 24 $(call dist-for-goals, cts_root, $(compatibility_zip))
|
D | collect_gpl_sources.mk | 29 $(call dist-for-goals,droidcore-unbundled,$(gpl_source_tgz))
|
D | vndk.mk | 26 $(call dist-for-goals, vndk, $(SOONG_VNDK_SNAPSHOT_ZIP))
|
D | find-shareduid-violation.mk | 38 $(call dist-for-goals,droidcore,$(shareduid_violation_modules_filename))
|
D | cts.mk | 24 $(call dist-for-goals, cts, $(compatibility_zip) $(compatibility_tests_list_zip))
|
D | mts.mk | 29 $(eval $(call dist-for-goals, $(suite), $(compatibility_zip))) \
|
D | owners.mk | 33 $(call dist-for-goals, general-tests, $(owners_zip))
|
D | test_mapping.mk | 38 $(call dist-for-goals, dist_files test_mapping,$(test_mappings_zip))
|
D | tradefed-tests-list.mk | 36 $(call dist-for-goals, tradefed-tests-list, $(tradefed_tests_list_zip))
|
D | oem_image.mk | 44 $(call dist-for-goals, oem_image, $(INSTALLED_OEMIMAGE_TARGET))
|
D | with-license.mk | 50 $(call dist-for-goals, with-license, $(with_license_zip))
|
/build/make/target/board/generic_arm64/ |
D | device.mk | 26 $(call dist-for-goals, dist_files, kernel/prebuilts/4.19/arm64/prebuilt-info.txt:kernel/4.19/prebui… 27 $(call dist-for-goals, dist_files, kernel/prebuilts/5.4/arm64/prebuilt-info.txt:kernel/5.4/prebuilt… 28 $(call dist-for-goals, dist_files, kernel/prebuilts/5.10/arm64/prebuilt-info.txt:kernel/5.10/prebui…
|
/build/make/target/board/generic_x86_64/ |
D | device.mk | 21 $(call dist-for-goals, dist_files, kernel/prebuilts/5.4/x86_64/prebuilt-info.txt:kernel/5.4/prebuil… 22 $(call dist-for-goals, dist_files, kernel/prebuilts/5.10/x86_64/prebuilt-info.txt:kernel/5.10/prebu…
|
/build/soong/ui/build/ |
D | dumpvars.go | 41 func DumpMakeVars(ctx Context, config Config, goals, vars []string) (map[string]string, error) { argument 66 ret, err = dumpMakeVars(ctx, config, goals, makeVars, false, tmpDir) 83 func dumpMakeVars(ctx Context, config Config, goals, vars []string, write_soong_vars bool, tmpDir s… argument 93 "MAKECMDGOALS="+strings.Join(goals, " "))
|