Lines Matching refs:src_path
99 src_path = path_parts[0]
103 dest_path = os.path.basename(src_path)
104 return src_path, dest_path
119 src_path, dest_path = _SplitAssetPath(path)
120 if os.path.isdir(src_path):
121 for f in build_utils.FindInDirectory(src_path, '*'):
122 ret.append((f, os.path.join(dest_path, f[len(src_path) + 1:])))
124 ret.append((src_path, dest_path))
140 for src_path, dest_path in path_tuples:
143 os.path.splitext(src_path)[1] not in _NO_COMPRESS_EXTENSIONS)
152 build_utils.AddToZipHermetic(apk, apk_path, src_path=src_path,
174 src_path=path,
207 for src_path, dest_path in itertools.chain(_assets, _uncompressed_assets):
208 input_paths.append(src_path)
249 src_path=options.dex_file)