Home
last modified time | relevance | path

Searched refs:bundle_json (Results 1 – 6 of 6) sorted by relevance

/build/indep_configs/scripts/
Dgenerate_components.py91 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 …]
Drefactor_hpm_bundle_json.py61 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)
Dgenerate_target_build_gn.py107 bundle_json = utils.get_json(_bundle_path)
108 build_data = bundle_json["component"]["build"]
/build/hb/util/
Dcomponent_util.py108 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/
Dget_subsystem_with_component.py53 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/
Dfull_components_generator.py87 for bundle_json in files_bundle_json:
88 data = read_component_from_bundle_json(bundle_json)