Searched refs:install_dir (Results 1 – 5 of 5) sorted by relevance
/development/vndk/snapshot/ |
D | update.py | 46 def remove_old_snapshot(install_dir): argument 47 logging.info('Removing any old files in {}'.format(install_dir)) 48 for file in glob.glob('{}/*'.format(install_dir)): 59 def install_snapshot(branch, build, local_dir, install_dir, temp_artifact_dir): argument 88 os.chdir(install_dir) 96 utils.check_call(['unzip', '-qn', artifact, '-d', install_dir]) 99 def gather_notice_files(install_dir): argument 106 for arch in utils.get_snapshot_archs(install_dir): 246 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 247 if not os.path.isdir(install_dir): [all …]
|
D | check_gpl_license.py | 39 def __init__(self, install_dir, android_build_top, temp_artifact_dir, argument 54 self._install_dir = install_dir 58 self._notice_files_dir = os.path.join(install_dir, 289 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 291 if not os.path.isdir(install_dir): 294 .format(install_dir)) 306 license_checker = GPLChecker(install_dir, ANDROID_BUILD_TOP,
|
D | gen_buildfiles.py | 69 def __init__(self, install_dir, vndk_version): argument 77 self._install_dir = install_dir 80 self._snapshot_archs = utils.get_snapshot_archs(install_dir) 81 self._root_bpfile = os.path.join(install_dir, utils.ROOT_BP_PATH) 82 self._common_bpfile = os.path.join(install_dir, utils.COMMON_BP_PATH) 568 install_dir = os.path.join(PREBUILTS_VNDK_DIR, 'v{}'.format(vndk_version)) 569 if not os.path.isdir(install_dir): 572 .format(install_dir)) 575 buildfile_generator = GenBuildFile(install_dir, vndk_version)
|
D | utils.py | 86 def get_snapshot_archs(install_dir): argument 93 for file in glob.glob('{}/*'.format(install_dir)):
|
/development/vendor_snapshot/ |
D | update.py | 212 install_dir = os.path.join('prebuilts', 'vendor', 'v'+str(args.snapshot_version)) 218 for root, _, files in os.walk(install_dir): 223 rel_path = os.path.relpath(full_path, install_dir) 228 bp_dir = os.path.join(install_dir, target_arch) 257 bp_dir = os.path.join(install_dir, target_arch)
|