Home
last modified time | relevance | path

Searched refs:dependencies (Results 1 – 20 of 20) sorted by relevance

/art/test/
DAndroid.run-test.mk97 test-art-host-run-test-dependencies : \
100 .PHONY: test-art-host-run-test-dependencies
101 test-art-run-test-dependencies : test-art-host-run-test-dependencies
103 test-art-target-run-test-dependencies :
104 .PHONY: test-art-target-run-test-dependencies
105 test-art-run-test-dependencies : test-art-target-run-test-dependencies
106 .PHONY: test-art-run-test-dependencies
115 $$(build_target) : test-art-$(1)-run-test-dependencies
DREADME.md98 In general all tests require some dependencies to be built before they can be run.
99 In general you can pass the `--build-dependencies` flag (also available as short
100 option -b) to `art/test.py` program to automatically build required dependencies.
101 One can also directly use the various `test-art-...-dependencies` targets listed
108 $ m test-art-host-run-test-dependencies
123 $ m test-art-target-run-test-dependencies
150 $ m test-art-host-run-test-dependencies
170 $ m test-art-host-run-test-dependencies
DREADME.chroot.md26 to build ART and the required dependencies for testing;
67 3. Build ART and required dependencies:
DREADME.atest.md9 Atest conveniently takes care of building tests and their dependencies (using
112 gtests) and all the necessary dependencies for the `chroot` environment;
DAndroid.bp91 // namespace. That allows the library to have shared_libs dependencies on all
/art/build/
DAndroid.gtest.mk208 gtest_build_rule := test-art-host-gtest-dependencies-$$(gtest_suffix)
305 define add-art-gtest-dependencies
350 $(foreach name,$(ART_TARGET_GTEST_NAMES), $(eval $(call add-art-gtest-dependencies,$(name),)))
387 dependencies := $$(ART_TEST_$(2)_GTEST$(3)_RULES)
390 $$(rule_name): $$(dependencies) d8
395 dependencies :=
428 rule_name := test-art-$(1)-gtest-dependencies$(3)
429 dependencies := $$(ART_TEST_$(2)_GTEST$(3)_BUILD_RULES)
432 $$(rule_name): $$(dependencies) d8
436 dependencies :=
DREADME.md9 which only has the sources and dependencies required for the module.
100 Prebuilts are used for the ART Module dependencies that have sources outside the
/art/test/533-regression-debugphi/
Dinfo.txt2 complicated phi dependencies.
/art/test/591-checker-regression-dead-loop/
Dinfo.txt2 dependencies in the wrong order.
/art/libnativeloader/
Dlibnativeloader.map.txt17 # Platform dependencies go through libnativeloader_lazy, which accesses
/art/libnativebridge/
Dlibnativebridge.map.txt17 # Platform dependencies go through libnativebridge_lazy, which accesses
/art/tools/
Dbuild_linux_bionic_tests.sh48 build/soong/soong_ui.bash --make-mode $soong_args "$@" test-art-host-run-test-dependencies build-ar…
/art/tools/jvmti-agents/enable-vlog/
DREADME.md14 dependencies.
/art/build/apex/
DAndroid.bp62 // dependencies work with APEX libraries.
116 // dependencies of `libartd-compiler`, and remove `art_runtime_run_test_libs`.
186 // dependencies work with APEX libraries.
328 // ART gtests with dependencies on internal ART APEX libraries.
/art/tools/jvmti-agents/ti-fast/
DREADME.md14 Use `libtifasts` if you wish to build a version without non-NDK dynamic dependencies.
/art/tools/jvmti-agents/ti-alloc-sample/
DREADME.md13 Use `libtiallocsamples` if you wish to build a version without non-NDK dynamic dependencies.
/art/compiler/optimizing/
Dload_store_elimination.cc2296 ScopedArenaVector<ArenaBitVector*> dependencies(allocator.Adapter(kArenaAllocLSE)); in MaterializeLoopPhis() local
2297 dependencies.reserve(num_phi_placeholders); in MaterializeLoopPhis()
2300 dependencies.push_back( in MaterializeLoopPhis()
2302 ArenaBitVector* current_dependencies = dependencies.back(); in MaterializeLoopPhis()
2325 if (dependencies[i]->IsBitSet(k) && dependencies[k]->IsBitSet(j)) { in MaterializeLoopPhis()
2326 dependencies[i]->SetBit(j); in MaterializeLoopPhis()
2336 num_dependencies.push_back(dependencies[matrix_index]->NumSetBits()); in MaterializeLoopPhis()
2348 ArenaBitVector* current_dependencies = dependencies[current_matrix_index]; in MaterializeLoopPhis()
2359 if (dependencies[matrix_index]->IsBitSet(current_matrix_index)) { in MaterializeLoopPhis()
2372 } else if (dependencies[matrix_index]->IsBitSet(current_matrix_index)) { in MaterializeLoopPhis()
[all …]
/art/runtime/gc/space/
Dimage_space.cc1515 ArrayRef<std::string> dependencies,
1856 ArrayRef<std::string> dependencies, in CompileExtension() argument
1875 DCHECK(!dependencies.empty()); in CompileExtension()
1877 for (size_t i = 0, size = dependencies.size(); i != size; ++i) { in CompileExtension()
1879 *error_msg = StringPrintf("Missing extension dependency \"%s\"", dependencies[i].c_str()); in CompileExtension()
1963 args.push_back("--boot-image=" + Join(dependencies, kComponentSeparator)); in CompileExtension()
2815 ArrayRef<const std::unique_ptr<ImageSpace>> dependencies, in OpenOatFile() argument
2892 } else if (dependencies.empty()) { in OpenOatFile()
2908 dependencies, in OpenOatFile()
3036 ArrayRef<const std::unique_ptr<ImageSpace>> dependencies = in LoadComponents() local
[all …]
/art/libdexfile/
DAndroid.bp387 // That is necessary since Soong doesn't propagate dependencies transitively for
/art/runtime/
DAndroid.bp567 // We always build dex2oat and dependencies, even if the host build is otherwise disabled, since