/ohos5.0/build/lite/ndk/ |
H A D | ndk.gni | 45 assert(defined(invoker.src) && defined(invoker.dest_dir), 46 "sources and dest_dir are necessary") 57 dst = invoker.dest_dir 66 "--dest_dir", 106 dest_dir = "$ndk_libraries_out_dir" 112 dest_dir = "$ndk_headers_out_dir" 121 # dest_dir: Copy destination where sources are copied to. 126 assert(defined(invoker.src_dir) && defined(invoker.dest_dir), 127 "sources and dest_dir are necessary") 136 foreach(dst, invoker.dest_dir) { [all …]
|
H A D | BUILD.gn | 60 dest_dir = [ 74 dest_dir = [ 84 dest_dir += [ 94 dest_dir += [ "$root_out_dir/ndk/prebuilts/build-tools/bin" ] 146 "--dest_dir",
|
H A D | archive_ndk.py | 60 dest = args.dest_dir
|
/ohos5.0/build/ |
H A D | prebuilts_download.py | 89 dest_dir = os.path.join(code_dir, unzip_dir) 271 if os.path.exists(os.path.dirname(dest_dir)): 272 shutil.rmtree(os.path.dirname(dest_dir)) 275 os.symlink(src_dir, dest_dir) 283 dest_dir = code_dir + config_info.get('dest') 294 if os.path.exists(dest_dir): 295 shutil.rmtree(dest_dir) 296 shutil.move(tmp_dir, dest_dir) 298 if os.path.exists(dest_dir) and dest_dir != src_dir: 299 shutil.rmtree(dest_dir) [all …]
|
H A D | prebuilts_config.py | 83 def symlink_src2dest(src_dir, dest_dir): argument 84 if os.path.exists(dest_dir): 85 if os.path.islink(dest_dir): 86 os.unlink(dest_dir) 87 elif os.path.isdir(dest_dir): 88 shutil.rmtree(dest_dir) 90 os.remove(dest_dir) 92 os.makedirs(os.path.dirname(dest_dir), exist_ok=True) 94 print("symlink {} ---> {}".format(src_dir, dest_dir)) 95 os.symlink(src_dir, dest_dir)
|
/ohos5.0/build/ohos/packages/ |
H A D | resources_collect.py | 57 dest_dir = os.path.join(package_output_dir, origin_part_name) 58 if os.path.exists(dest_dir): 59 shutil.rmtree(dest_dir) 60 shutil.copytree(_variant_dir, dest_dir) 83 dest_dir = os.path.join(package_output_dir, origin_part_name) 84 if os.path.exists(dest_dir): 85 shutil.rmtree(dest_dir) 86 shutil.copytree(_variant_dir, dest_dir) 115 if os.path.exists(dest_dir): 116 shutil.rmtree(dest_dir) [all …]
|
H A D | modules_install.py | 118 dest_dir = os.path.join(platform_installed_path, 121 dest_dir = os.path.join(platform_installed_path, dest) 122 if not os.path.exists(dest_dir): 123 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/build/ohos/ndk/ |
H A D | ndk.gni | 286 # dest_dir: Root directory where sources are copied to. 291 "sources and dest_dir are necessary ") 297 _dest = invoker.dest_dir 397 if (defined(invoker.dest_dir)) { 398 _dest_dir = invoker.dest_dir 491 "dest_dir", 501 dest_dir = _dest_dir 529 if (defined(invoker.dest_dir)) { 530 _dest_dir = invoker.dest_dir 545 "dest_dir", [all …]
|
H A D | copy_notices_file.py | 22 def create_dest_file(dest_dir: str): 23 if not os.path.exists(dest_dir): 24 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/build/indep_configs/scripts/ |
H A D | generate_components.py | 80 def _symlink_src2dest(src_dir, dest_dir): argument 81 if os.path.exists(dest_dir) and os.path.islink(dest_dir): 82 os.unlink(dest_dir) 83 if os.path.exists(dest_dir) and dest_dir != src_dir: 84 if os.path.isdir(dest_dir): 85 shutil.rmtree(dest_dir) 87 os.remove(dest_dir) 88 os.symlink(src_dir, dest_dir)
|
/ohos5.0/base/hiviewdfx/hiview/build/ |
H A D | copy_plugin_config.py | 22 dest_dir = os.path.dirname(dst) 23 if not os.path.exists(dest_dir): 24 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/build/scripts/ |
H A D | collect_publicity.py | 37 dest_dir = os.path.dirname(options.output) 38 if not os.path.exists(dest_dir): 39 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/build/lite/testfwk/ |
H A D | lite_testcase_resource_copy.py | 43 dest_dir = os.path.dirname(dest_path) 44 if not os.path.exists(dest_dir): 45 os.makedirs(dest_dir, exist_ok=True) 176 dest_dir = os.path.dirname(dest_file) 180 if not os.path.exists(dest_dir): 181 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/foundation/graphic/graphic_2d/utils/build/ |
H A D | copy_arkui_adapters.py | 35 dest_dir = os.path.realpath(sys.argv[2]) 36 if (not os.path.isdir(dest_dir)): 52 dest_dir_build_folder = os.path.join(dest_dir, item, "build")
|
/ohos5.0/build/ohos/testfwk/ |
H A D | test_py_file_copy.py | 34 dest_dir = os.path.dirname(output_file) 35 if not os.path.exists(dest_dir): 36 os.makedirs(dest_dir, exist_ok=True)
|
H A D | testcase_resource_copy.py | 45 dest_dir = os.path.dirname(dest_path) 46 if not os.path.exists(dest_dir): 47 os.makedirs(dest_dir, exist_ok=True) 181 dest_dir = os.path.dirname(dest_file) 186 if not os.path.exists(dest_dir): 187 os.makedirs(dest_dir, exist_ok=True)
|
/ohos5.0/build/ohos/notice/ |
H A D | collect_system_notice_files.py | 28 def collect_notice_files(options, dest_dir: str, depfiles: str): 53 dest = os.path.join(dest_dir, 65 dest = os.path.join(dest_dir,
|
/ohos5.0/build/ohos/sdk/ |
H A D | copy_sdk_modules.py | 55 dest_dir = os.path.dirname(dest) 56 os.makedirs(dest_dir, exist_ok=True) 102 sdk_out_dir = options.dest_dir
|
H A D | sdk.gni | 87 assert(defined(invoker.dest_dir)) 123 rebase_path(invoker.dest_dir, root_build_dir), 131 rebase_path("${invoker.dest_dir}/${invoker.sdk_type}", root_build_dir), 220 dest_dir = "${ohos_sdk_copy_dir}/${sdk_system}" 222 dest_dir = "${root_build_dir}/${sdk_class}-current-sdk/${sdk_system}/${api_version}"
|
/ohos5.0/foundation/multimedia/media_foundation/interface/kits/ndk/core/ |
H A D | BUILD.gn | 18 dest_dir = "$ndk_headers_out_dir/multimedia/player_framework" 30 dest_dir = "$ndk_headers_out_dir/multimedia"
|
/ohos5.0/build/toolchain/ |
H A D | gcc_solink_wrapper.py | 104 for dest_dir in dest_dirs: 105 if dest_dir.startswith("system"): 106 return dest_dir
|
/ohos5.0/build/lite/ |
H A D | copy_files.py | 60 out_dir = args.dest_dir
|
/ohos5.0/foundation/resourceschedule/qos_manager/interfaces/kits/ |
H A D | BUILD.gn | 18 dest_dir = "$ndk_headers_out_dir/qos"
|
/ohos5.0/foundation/filemanagement/app_file_service/interfaces/kits/ndk/fileshare/ |
H A D | BUILD.gn | 29 dest_dir = "$ndk_headers_out_dir/filemanagement/fileshare/"
|
/ohos5.0/foundation/filemanagement/app_file_service/interfaces/kits/ndk/fileuri/ |
H A D | BUILD.gn | 17 dest_dir = "$ndk_headers_out_dir/filemanagement/file_uri/"
|