Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 72) sorted by relevance

123

/build/tools/module_dependence/
DREADME.md23 build/tools/module_dependence/part_deps.py --deps-files-path out/ohos-arm-release/deps_files
29 …--deps-files-path # 必选 模块依赖数据文件目录,gn执行完成后输出在out/ohos-arm-release/deps_files目录下,如果不在源码目录执行,需要配置到正…
49 脚本运行后会在 `--deps-files-path` 指定的deps_files的同级目录下,创建parts_deps_info文件夹输出结果数据。
74 build/tools/module_dependence/module_deps.py --deps-files-path out/ohos-arm-release/deps_files
80 …--deps-files-path # 必选 模块依赖数据文件目录,gn执行完成后输出在out/ohos-arm-release/deps_files目录下,如果不在源码目录执行,需要配置到正…
85 脚本运行后会在 `--deps-files-path` 指定的deps_files的同级目录下,创建module_deps_info文件夹输出结果数据。
/build/ohos/statistics/
Dbuild_overlap_statistics.py76 for root, _, files in os.walk(options.build_out_dir):
77 for file in fnmatch.filter(files, pattern):
114 files = len(set(sub_objs))
115 if files == 0:
117 overlap_rate = float(builds) / float(files)
121 "files": files,
122 "files_percentage": 100 * float(files) / float(total_files),
/build/templates/idl/
Dohos_idl.gni16 # Generate .ts or .cpp files from .idl files.
22 # "ts": generate ts interface files
23 # "cpp": generate cpp interface files
55 "need define gen_type to point which type files should be generated")
/build/ohos/packages/
Dsystem_gzip_package.py33 for root, dirs, files in os.walk(src_image_path):
41 for file_name in files:
53 files = [package_dir] + additional_files
55 for f in files:
Dfs_process.py133 def filter(cls, files, ignore_list): argument
135 return files
137 for file in files:
148 for relpath, _, files in os.walk(path):
149 files = self.filter(files, ignore_list)
150 for file in files:
Dsystem_z_package.py43 for root, _, files in os.walk(output_dir):
44 for _file in files:
/build/toolchain/linux/
DBUILD.gn65 # Output linker map files for binary size analysis.
83 # Output linker map files for binary size analysis.
94 # Output linker map files for binary size analysis.
117 # Output linker map files for binary size analysis.
/build/scripts/
Dgen_summary_ebpf_testcase_config.py37 for root, dirs, files in os.walk(testcase_dir):
38 for name in files:
Dget_all_files.py41 for root, _, files in os.walk(_dir):
42 for _file in files:
Dfind.py47 for root, _, files in os.walk(d, followlinks=options.follow_symlinks):
48 for f in fnmatch.filter(files, options.pattern):
Dcopy_ex.py136 files = list(
138 build_utils.parse_gn_list(f) for f in options.files))
140 for f in files:
226 if options.files:
/build/config/ohos/
Dcopy_ex.gni8 # files are they are copied. This also ensures that symlinks are followed
13 # sources: List of source files or directories to copy to dest.
49 args += [ "--files=$rebased_sources" ]
/build/build_scripts/
Dbuild.py26 for root, dirs, files in os.walk(findir):
27 if target in files:
/build/tools/component_tools/
Dfull_components_generator.py42 ret, files, folders = [], [], [path]
47 files.append(abs_file)
51 for file in files:
/build/toolchain/
Dtoolchain.gni37 "Linker map files should only be generated when is_official_build = true")
39 "Linker map files should only be generated for ohos and Linux")
48 # Clang compiler version. Clang files are placed at version-dependent paths.
60 # Extension for shared library files (including leading dot).
84 # Prefix for shared library files.
/build/ohos/sdk/
Dadd_notice_file.py39 for root, _, files in os.walk(options.sdk_archive_dir):
41 [os.path.join(root, f) for f in files if f.endswith('.zip')])
/build/config/
Dpython.gni7 # 1) Causes files to be included in runtime_deps, so that they are uploaded to
10 # re-run when relevant Python files change.
25 # data: Additional files to include in data. E.g. non-.py files needed by the
26 # library, or .py files that are conditionally / lazily imported.
51 # so that "gn analyze" will mark the target as changed when .py files
/build/ohos/ndk/
Darchive_ndk.py46 files = []
50 files.extend([os.path.join(root, f)])
52 for f in files:
/build/hb/util/preloader/
Dparse_lite_subsystems_config.py61 for root, _, files in os.walk(lite_components_dir):
62 for file in files:
/build/ohos/images/mkimage/
Djudge_updater_image.py80 for root, dirs, files in os.walk(path):
81 for file in files:
/build/ohos/testfwk/
Dtest_js_file_copy.py43 for root, dirs, files in os.walk(suite_path):
44 for item in files:
/build/hb/util/
Dproduct_util.py182 files = [os.path.join(config.root_path, file) for file in IoUtil.read_json_file(
185 files.append(product_json)
189 for _file in files:
210 files = [os.path.join(config.root_path, file) for file in IoUtil.read_json_file(
213 files.append(product_json)
217 for _file in files:
/build/hb/util/loader/
Dsubsystem_scan.py55 for root, dirs, files in os.walk(subsystem_path):
56 for name in files:
/build/lite/ndk/doc/config/
DDoxyfile_CPP80 # will distribute the generated files over these directories. Enabling this
81 # option can be useful when feeding doxygen a huge amount of source files, where
82 # putting all generated files in the same directory would otherwise causes
146 # before files name in the file list and in the header files. If set to NO the
274 # Doxygen selects the parser to use depending on the extension of the files it
280 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
283 # Note For files without extension you can use no_extension as a placeholder.
286 # the files are not read by doxygen.
437 # locally in source files will be included in the documentation. If set to NO
438 # only classes defined in header files are included. Does not have any effect
[all …]
DDoxyfile_C80 # will distribute the generated files over these directories. Enabling this
81 # option can be useful when feeding doxygen a huge amount of source files, where
82 # putting all generated files in the same directory would otherwise causes
146 # before files name in the file list and in the header files. If set to NO the
274 # Doxygen selects the parser to use depending on the extension of the files it
280 # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
283 # Note For files without extension you can use no_extension as a placeholder.
286 # the files are not read by doxygen.
437 # locally in source files will be included in the documentation. If set to NO
438 # only classes defined in header files are included. Does not have any effect
[all …]

123