Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 16 of 16) sorted by relevance

/tools/tradefederation/core/
Datest_tradefed.sh42 for dep in $deps; do
43 if [ -f "$ANDROID_HOST_OUT/framework/$dep" ]; then
44 TF_PATH+=":$ANDROID_HOST_OUT/framework/$dep"
DAndroid.bp236 // TODO(b/1859290570: Delete platform-test-annotations dep
/tools/treble/build/treble_build/report/
Dbuild.go157 for dep := range inChan {
159 path, err := rtx.Build.Path(ctx, target, dep)
160 outChan <- &buildPathData{filename: dep, path: path, error: err != nil}
162 paths, err := rtx.Build.Paths(ctx, target, dep)
164 outChan <- &buildPathData{filename: dep, path: nil, error: true}
168 outChan <- &buildPathData{filename: dep, path: path, error: false}
/tools/asuite/atest/bazel/resources/rules/
Dsoong_prebuilt.bzl72 dep[DefaultInfo].default_runfiles
73 for dep in ctx.attr.runtime_deps + ctx.attr.data + ctx.attr.device_data
84 dep[DefaultInfo].default_runfiles.files,
85 dep[DefaultInfo].files,
88 for dep in ctx.attr.static_deps
138 dep[DefaultInfo].default_runfiles
139 for dep in ctx.attr.runtime_deps
185 dep[SoongPrebuiltInfo].transitive_runtime_outputs
186 for dep in runtime_deps
199 dep[SoongPrebuiltInfo].transitive_runtime_outputs,
[all …]
Dtradefed_test.bzl322 for dep in tradefed_deps + test_host_deps + test_device_deps:
323 for f in dep[TradefedTestDependencyInfo].transitive_test_files.to_list():
/tools/asuite/atest/java/
Datest_tradefed.sh47 for dep in $deps; do
48 if [ -f "$ANDROID_HOST_OUT/framework/$dep" ]; then
49 TF_PATH+=":$ANDROID_HOST_OUT/framework/$dep"
/tools/asuite/atest/coverage/
Dcoverage.py186 for dep in info.get(constants.MODULE_DEPENDENCIES, []):
187 if dep in seen:
190 seen.add(dep)
192 dep_info = mod_info.get_module_info(dep)
201 dep = dep.removesuffix('.impl')
202 dep_info = mod_info.get_module_info(dep)
207 deps.add(dep)
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DPythonVirtualenvPreparer.java87 for (String dep : mDepModules) { in installDeps()
88 CLog.i("Attempting installation of %s", dep); in installDeps()
90 "install", dep); in installDeps()
92 CLog.e("Installing %s failed", dep); in installDeps()
96 CLog.d("Successfullly installed %s.", dep); in installDeps()
/tools/asuite/aidegen/lib/
Dproject_info.py268 dep = {}
280 dep[name] = self.modules_info.name_to_module_info[name]
281 dep[name][constant.KEY_DEPTH] = depth
283 if (constant.KEY_DEPENDENCIES in dep[name]
284 and dep[name][constant.KEY_DEPENDENCIES]):
285 children.update(dep[name][constant.KEY_DEPENDENCIES])
287 dep.update(self.get_dep_modules(children, depth + 1))
288 return dep
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandFileWatcher.java222 for (CommandFile dep : cmd.dependencies) { in checkCommandFileForUpdate()
223 if (checkCommandFileForUpdate(dep, checkedFiles)) { in checkCommandFileForUpdate()
/tools/asuite/aidegen/idea/
Diml.py239 for dep in self._mod_info.get(constant.KEY_DEPENDENCIES, []):
240 self._deps.append(templates.DEPENDENCIES.format(MODULE=dep))
/tools/asuite/aidegen/project/
Dproject_splitter.py214 dep = iml.IMLGenerator.get_unique_iml_name(os.path.join(
216 if dep not in project.dependencies:
217 project.dependencies.append(dep)
/tools/tradefederation/core/src/com/android/tradefed/build/content/
DTestContentAnalyzer.java191 File dep = FileUtil.findFile(rootDir, depFile); in mapDiffsToModule() local
192 if (dep == null) { in mapDiffsToModule()
195 Path relativeRootFilePath = rootDir.toPath().relativize(dep.toPath()); in mapDiffsToModule()
/tools/metalava/metalava-model-psi/src/main/java/com/android/tools/metalava/model/psi/
DPsiSourceParser.kt233 for (dep in classpath) { in configureUastEnvironmentForKMP() method
235 if (dep.extension !in SUPPORTED_CLASSPATH_EXT) continue in configureUastEnvironmentForKMP()
/tools/asuite/atest/
Dcli_translator.py198 for dep in test_deps_in_mod_info:
199 t_info.add_build_target(dep)
Dbazel_mode.py1094 [dep for dep in value if isinstance(dep, ModuleRef)]