Searched refs:bundle_json (Results 1 – 6 of 6) sorted by relevance
/build/indep_configs/scripts/ |
D | generate_components.py | 91 def _symlink_binarys(hpm_cache_path, bundle_json, dependences_json, part_name): argument 92 path = bundle_json["segment"]["destPath"] 125 def _gen_components_info(components_json, bundle_json, part_name, src_build_name_list): argument 126 subsystem = bundle_json["component"]["subsystem"] 127 path = bundle_json["segment"]["destPath"] 129 component = bundle_json["component"]["build"]["inner_kits"] 131 if bundle_json["component"]["build"] == []: 132 bundle_json["component"]["build"] = {} 133 if "inner_api" not in bundle_json["component"]["build"].keys(): 134 bundle_json["component"]["build"]["inner_api"] = [] [all …]
|
D | refactor_hpm_bundle_json.py | 61 def _out_bundle_json(bundle_json, file_name): argument 65 json.dump(bundle_json, f, indent=2) 76 bundle_json = utils.get_json(bundle_path) 78 bundle_json.update({"dirs": dirs_info}) 79 _out_bundle_json(bundle_json, bundle_path)
|
D | generate_target_build_gn.py | 107 bundle_json = utils.get_json(_bundle_path) 108 build_data = bundle_json["component"]["build"]
|
/build/hb/util/ |
D | component_util.py | 108 bundle_json = os.path.join( 110 if os.path.exists(bundle_json): 111 return True, bundle_json 124 bundle_json = os.path.join(root, filename) 125 data = IoUtil.read_json_file(bundle_json) 126 bundles_path = process_bundle_path(bundle_json, bundles_path, data) 131 def process_bundle_path(bundle_json, bundles_path, data): argument 133 bundles_path[data["component"]["name"]] = os.path.dirname(bundle_json)
|
/build/tools/component_tools/static_check/bundle_check/ |
D | get_subsystem_with_component.py | 53 bundle_json = json.load(bundle_file) 55 if 'segment' in bundle_json and 'destPath' in bundle_json["segment"]: 56 destpath = bundle_json["segment"]["destPath"] 57 component_item[bundle_json["component"]["name"]] = destpath 61 component_item[bundle_json["component"]["name"]] = \
|
/build/tools/component_tools/ |
D | full_components_generator.py | 87 for bundle_json in files_bundle_json: 88 data = read_component_from_bundle_json(bundle_json)
|