Lines Matching refs:path
32 self.build_prop = os.path.join(output_dir, 'build.prop')
33 self.build_config_json = os.path.join(output_dir, 'build_config.json')
34 self.parts_json = os.path.join(output_dir, 'parts.json')
35 self.parts_config_json = os.path.join(output_dir, 'parts_config.json')
36 self.build_gnargs_prop = os.path.join(output_dir, 'build_gnargs.prop')
37 self.features_json = os.path.join(output_dir, 'features.json')
38 self.syscap_json = os.path.join(output_dir, 'syscap.json')
39 self.exclusion_modules_json = os.path.join(output_dir,
41 self.subsystem_config_json = os.path.join(output_dir,
43 self.subsystem_config_overlay_json = os.path.join(output_dir,
45 self.platforms_build = os.path.join(output_dir, 'platforms.build')
46 self.systemcapability_json = os.path.join(
48 self.compile_standard_whitelist_json = os.path.join(output_dir, 'compile_standard_whitelist.json')
49 self.compile_env_allowlist_json = os.path.join(output_dir, 'compile_env_allowlist.json')
60 self.productdefine_dir = os.path.join(
62 self.built_in_base_dir = os.path.join(self.productdefine_dir, 'base')
67 self.device_dir = os.path.join(config.root_path, 'device')
69 self.subsystem_config_json = os.path.join(
71 self.subsystem_config_overlay_json = os.path.join(config.product_path,
73 self.lite_components_dir = os.path.join(
76 self.preloader_output_dir = os.path.join(
216 elif os.path.dirname(self._config_file) != self._dirs.built_in_product_dir:
217 relpath = os.path.relpath(
225 ext_root_proc_conf_path = os.path.join(
227 if os.path.exists(ext_root_proc_conf_path):
230 ext_critical_proc_conf_path = os.path.join(
232 if os.path.exists(ext_critical_proc_conf_path):
235 ext_sanitizer_check_list_path = os.path.join(
237 if os.path.exists(ext_sanitizer_check_list_path):
239 _global_ext_var_file = os.path.join(
241 if os.path.exists(_global_ext_var_file):
254 chipprod_config_path = os.path.join(
256 if os.path.exists(chipprod_config_path):
259 ext_sdk_config_file = os.path.join(
261 if os.path.exists(ext_sdk_config_file):
264 ext_ndk_config_file = os.path.join(
266 if os.path.exists(ext_ndk_config_file):
269 path = os.path.join(
271 if os.path.exists(path):
272 build_vars['ext_sign_hap_py_path'] = path
296 device_config_file = os.path.join(config_dir,
329 device_build_path = os.path.join(self._dirs.device_dir,
332 if not os.path.exists(device_build_path):
333 device_build_path = os.path.join(self._dirs.device_dir,
354 'path': self._device_info.get('device_build_path')
359 system_base_config_file = os.path.join(base_config_dir,
361 if not os.path.exists(system_base_config_file):
369 _file = os.path.join(source_root_dir, _config)
379 _info = IoUtil.read_json_file(os.path.join(
404 'path': product_build_path
411 if os.path.dirname(self._config_file) != self._dirs.built_in_product_dir \
413 config['product_build_path'] = os.path.relpath(
414 os.path.dirname(self._config_file), self._dirs.source_root_dir)