/aosp12/build/soong/scripts/ |
H A D | microfactory.bash | 37 local out_dir="${OUT_DIR-}" 38 if [ -z "${out_dir}" ]; then 40 out_dir="${OUT_DIR_COMMON_BASE}/$(basename ${TOP})" 42 out_dir="out" 45 if [[ "${out_dir}" != /* ]]; then 46 out_dir="${TOP}/${out_dir}" 48 echo "${out_dir}"
|
/aosp12/tools/ |
H A D | bazel | 34 local out_dir="${OUT_DIR-}" 35 if [ -z "${out_dir}" ]; then 37 out_dir="${OUT_DIR_COMMON_BASE}/$(basename ${TOP})" 39 out_dir="out" 42 if [[ "${out_dir}" != /* ]]; then 43 out_dir="${TOP}/${out_dir}" 45 echo "${out_dir}"
|
/aosp12/build/bazel/ |
H A D | bazel.sh | 34 local out_dir="${OUT_DIR-}" 35 if [ -z "${out_dir}" ]; then 37 out_dir="${OUT_DIR_COMMON_BASE}/$(basename ${TOP})" 39 out_dir="out" 42 if [[ "${out_dir}" != /* ]]; then 43 out_dir="${TOP}/${out_dir}" 45 echo "${out_dir}"
|
/aosp12/build/make/core/tasks/tools/ |
H A D | compatibility.mk | 30 out_dir := $(HOST_OUT)/$(test_suite_name)/$(test_suite_subdir) 67 compatibility_zip_resources := $(out_dir)/tools $(out_dir)/testcases $(out_dir)/lib $(out_dir)/lib64 70 test_suite_notice_txt := $(out_dir)/NOTICE.txt 71 test_suite_notice_html := $(out_dir)/NOTICE.html 83 compatibility_tests_list_zip := $(out_dir)-tests_list.zip 85 compatibility_zip := $(out_dir).zip 87 $(compatibility_zip): PRIVATE_OUT_DIR := $(out_dir) 93 $(compatibility_zip): PRIVATE_tests_list := $(out_dir)-tests_list
|
/aosp12/system/sepolicy/tools/ |
H A D | build_policies.sh | 16 export out_dir=$2 21 echo "Output directory: $out_dir" 23 mkdir -p $out_dir 75 my_out_file="$out_dir/log.$target" 78 OUT_DIR=$out_dir/out.$target mmma -j$mmma_jobs system/sepolicy &>> $my_out_file 87 parallel --no-notice -j $parallel_jobs --bar --joblog $out_dir/joblog compile_target ::: $targets 89 echo "Failed to lunch: $(grep "\s1\s0\scompile_target" $out_dir/joblog | sed 's/^.* //' | sort | pa… 90 echo "Failed to build: $(grep "\s2\s0\scompile_target" $out_dir/joblog | sed 's/^.* //' | sort | pa…
|
/aosp12/art/tools/ |
H A D | build_linux_bionic.sh | 56 out_dir=$(get_build_var OUT_DIR) 64 tmp_build_number=$(cat ${out_dir}/soong/build_number.txt) 66 cat $out_dir/soong/soong.variables > ${tmp_soong_var} 70 find $out_dir/ -maxdepth 1 -mindepth 1 \ 74 find $out_dir/soong/ -maxdepth 1 -mindepth 1 \ 80 python3 <<END - ${tmp_soong_var} ${out_dir}/soong/soong.variables 96 echo ${tmp_build_number}_SOONG_ONLY_BUILD > ${out_dir}/soong/build_number.txt
|
H A D | build_linux_bionic_tests.sh | 38 out_dir=$(get_build_var OUT_DIR) 56 cat $out_dir/soong/soong.variables > ${tmp_soong_var} 57 python3 <<END - ${tmp_soong_var} ${out_dir}/soong/soong.variables 70 mv $tmp_soong_var $out_dir/soong/soong.variables 74 soong_out=$out_dir/soong/host/linux_bionic-x86 101 mv $tmp_soong_var $out_dir/soong/soong.variables
|
H A D | buildbot-build.sh | 31 out_dir=out 33 out_dir=${OUT_DIR_COMMON_BASE}/${PWD##*/} 36 out_dir=${OUT_DIR} 39 java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES 144 echo "ANDROID_HOST_OUT environment variable is empty; using $out_dir/host/linux-x86" 145 ANDROID_HOST_OUT=$out_dir/host/linux-x86
|
H A D | dist_linux_bionic.sh | 39 out_dir=$(get_build_var OUT_DIR) 44 cp -R ${out_dir}/soong/host/* $DIST_DIR/
|
/aosp12/bionic/libc/tools/ |
H A D | symbols.py | 59 out_dir = os.environ['ANDROID_PRODUCT_OUT'] 60 lib_dir = os.path.join(out_dir, 'obj') 75 out_dir = os.environ['ANDROID_PRODUCT_OUT'] 76 lib_dir = os.path.join(out_dir, 'system/lib64') 78 lib_dir = os.path.join(out_dir, 'system/lib') 80 lib_dir = os.path.join(out_dir, 'apex/com.android.runtime/lib64/bionic/') 82 lib_dir = os.path.join(out_dir, 'apex/com.android.runtime/lib/bionic/')
|
/aosp12/frameworks/rs/ |
H A D | build_rs.py | 33 out_dir = os.path.realpath(os.path.join(THIS_DIR, '../..', *args)) 34 return out_dir 44 out_dir = os.path.join(top_out, *args) 45 return out_dir 58 def build(out_dir): argument 68 build_product(out_dir, product) 71 def build_product(out_dir, product): argument 75 env['OUT_DIR'] = out_dir 327 out_dir = build_path() 328 build(out_dir=out_dir) [all …]
|
/aosp12/system/bt/gd/packet/parser/ |
H A D | main.cc | 44 const std::filesystem::path& out_dir, 51 const std::filesystem::path& out_dir, 59 const std::filesystem::path& out_dir, 129 std::filesystem::path out_dir; in main() local 158 out_dir = cwd / std::filesystem::path(arg.substr(arg_out.size())); in main() 173 …if (out_dir == std::filesystem::path() || include_dir == std::filesystem::path() || num_shards == … in main() 178 std::cout << "out dir: " << out_dir << std::endl; in main() 189 …if (!generate_rust_source_one_file(declarations, input_files.front(), include_dir, out_dir, root_n… in main() 195 …if (!generate_cpp_headers_one_file(declarations, input_files.front(), include_dir, out_dir, root_n… in main() 200 … declarations, input_files.front(), include_dir, out_dir, root_namespace, num_shards)) { in main()
|
/aosp12/system/bt/gd/rust/facade_proto/ |
H A D | build.rs | 30 fn gen_mod_rs<P: AsRef<Path>>(out_dir: PathBuf, inputs: &[P], grpc: bool) { in gen_mod_rs() 32 let mut f = fs::File::create(out_dir.join("mod.rs")).unwrap(); in gen_mod_rs() 46 let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap()); in main() localVariable 47 let proto_out_dir = out_dir.join("proto_out"); in main() 48 let grpc_out_dir = out_dir.join("grpc_out"); in main() 76 .out_dir(proto_out_dir.as_os_str().to_str().unwrap()) in main()
|
/aosp12/system/extras/simpleperf/scripts/ |
H A D | api_profiler.py | 68 if not os.path.isdir(args.out_dir): 69 os.makedirs(args.out_dir) 79 adb.check_run(['pull', '/data/local/tmp/simpleperf_data.zip', args.out_dir]) 84 zip_file_path = os.path.join(args.out_dir, 'simpleperf_data.zip') 89 log_info('recording file: %s' % os.path.join(args.out_dir, name)) 90 zip_fh.extract(name, args.out_dir)
|
/aosp12/system/bt/gd/rust/packets/ |
H A D | build.rs | 21 let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap()); in main() localVariable 30 let outputted = [out_dir.join("../../hci/hci_packets.rs")]; in main() 39 .arg("--out=".to_owned() + out_dir.as_os_str().to_str().unwrap()) in main() 56 out_dir.join(outputted[i].file_name().unwrap()).as_os_str().to_str().unwrap(), in main()
|
/aosp12/build/make/tools/ |
H A D | compare_builds.py | 332 def RunSoong(out_dir, args, capture_output): argument 334 env["OUT_DIR"] = out_dir 345 def GetBuildVar(out_dir, name): argument 354 def RequireBuildVar(out_dir, name): argument 357 value = GetBuildVar(out_dir, name) 372 def RunBuild(work_dir, out_dir, target, hide_build_output): argument 377 if work_dir != out_dir: 378 os.replace(work_dir, out_dir) 592 def __init__(self, out_dir): argument 593 super().__init__(out_dir) [all …]
|
H A D | mk2bp_catalog.py | 332 if not args.out_dir: 333 args.out_dir = os.getenv("OUT_DIR", "out") 334 while args.out_dir.endswith("/") and len(args.out_dir) > 1: 335 args.out_dir = args.out_dir[:-1] 339 HOST_OUT_ROOT = args.out_dir + "/host" 341 PRODUCT_OUT = args.out_dir + "/target/product/%s" % TARGET_DEVICE 353 if filename.startswith(args.out_dir + "/"):
|
/aosp12/packages/modules/Gki/ |
H A D | extract_img_from_apex.py | 37 def ExtractImagesFromApex(apex, out_dir): argument 38 if not os.path.isdir(out_dir): 39 os.makedirs(out_dir) 50 boot_img = os.path.join(out_dir, 'boot.img')
|
/aosp12/art/test/testrunner/ |
H A D | run_build_test_target.py | 125 out_dir = pathlib.PurePath(env.SOONG_OUT_DIR) variable 126 if not out_dir.is_absolute(): 127 out_dir = pathlib.PurePath(env.ANDROID_BUILD_TOP).joinpath(out_dir) variable 128 run_test_command += list(map(lambda a: a.format(SOONG_OUT_DIR=str(out_dir)), test_flags))
|
/aosp12/system/update_engine/ |
H A D | tar_bunzip2.gni | 19 out_dir = "${root_gen_dir}/${image_out_dir}" 24 outputs = [ "${out_dir}/{{source_name_part}}.flag" ] 28 "tar -xvf \"{{source}}\" -C \"${out_dir}\" && touch ${out_dir}/{{source_name_part}}.flag",
|
/aosp12/art/dex2oat/ |
H A D | dex2oat_test.cc | 1090 std::string out_dir = GetScratchDir(); in TEST_F() local 1370 std::string out_dir = GetScratchDir(); in TEST_F() local 1393 std::string out_dir = GetScratchDir(); in TEST_F() local 1418 std::string out_dir = GetScratchDir(); in TEST_F() local 1449 std::string out_dir = GetScratchDir(); in TEST_F() local 1464 std::string out_dir = GetScratchDir(); in TEST_F() local 1480 std::string out_dir = GetScratchDir(); in TEST_F() local 1496 std::string out_dir = GetScratchDir(); in TEST_F() local 1585 std::string out_dir = GetScratchDir(); in TEST_F() local 1926 std::string out_dir = GetScratchDir(); in TEST_F() local [all …]
|
/aosp12/frameworks/base/services/tests/ |
H A D | runtests.py | 53 out_dir = os.environ.get('OUT', None) 55 if build_top is None or out_dir is None: 71 out_dir)
|
/aosp12/art/tools/golem/ |
H A D | build-target.sh | 286 out_dir="out/x86_64" 305 out_dir="out/x86" 327 setenv OUT_DIR "$out_dir"
|
/aosp12/frameworks/base/tools/aapt2/test/ |
H A D | Fixture.cpp | 94 const android::StringPiece& out_dir, IDiagnostics* diag) { in CompileFile() argument 96 CHECK(file::mkdirs(out_dir.data())); in CompileFile() 97 return CompileCommand(diag).Execute({path, "-o", out_dir, "-v"}, &std::cerr) == 0; in CompileFile()
|
/aosp12/hardware/google/camera/common/hal/hidl_service/ |
H A D | version_script.py | 44 out_dir = os.getenv('OUT_DIR') 45 with open('%s/soong/build_number.txt' % out_dir, 'r') as file:
|