Lines Matching full:target_dir
474 target_dir = os.path.join(working_dir, make_dir_name)
475 if not os.path.exists(target_dir):
476 os.makedirs(target_dir)
478 process_aar(artifact_file, target_dir)
487 def process_aar(artifact_file, target_dir):
488 # Extract AAR file to target_dir.
490 zip.extractall(target_dir)
493 classes_jar = os.path.join(target_dir, "classes.jar")
498 for root, dirs, files in os.walk(target_dir):
506 file_path = os.path.join(target_dir, file)