| Index: build/android/gyp/util/build_utils.py
|
| diff --git a/build/android/gyp/util/build_utils.py b/build/android/gyp/util/build_utils.py
|
| index a0cd7c12eee06df60e4539b775af639275f9e830..e1d0ab69e1235aa25386a6be9763cb7f1374cd85 100644
|
| --- a/build/android/gyp/util/build_utils.py
|
| +++ b/build/android/gyp/util/build_utils.py
|
| @@ -200,6 +200,7 @@ def ExtractAll(zip_path, path=None, no_clobber=True, pattern=None):
|
| elif not os.path.exists(path):
|
| MakeDirectory(path)
|
|
|
| + files = None
|
| with zipfile.ZipFile(zip_path) as z:
|
| for name in z.namelist():
|
| if name.endswith('/'):
|
| @@ -216,6 +217,8 @@ def ExtractAll(zip_path, path=None, no_clobber=True, pattern=None):
|
| % (zip_path, name, output_path))
|
|
|
| z.extractall(path=path)
|
| + files = list(set(z.namelist()))
|
| + return files
|
|
|
|
|
| def DoZip(inputs, output, base_dir):
|
|
|