Index: build/android/gyp/create_standalone_apk.py |
diff --git a/build/android/gyp/create_standalone_apk.py b/build/android/gyp/create_standalone_apk.py |
index de541a6d5efae9188e4d00df0a3b85e194eecb18..19520916803e43dc12c5b8daa45a49f95bce5e27 100755 |
--- a/build/android/gyp/create_standalone_apk.py |
+++ b/build/android/gyp/create_standalone_apk.py |
@@ -23,10 +23,9 @@ def CreateStandaloneApk(options): |
intermediate_path = intermediate_file.name |
shutil.copy(options.input_apk_path, intermediate_path) |
apk_path_abs = os.path.abspath(intermediate_path) |
- build_utils.CheckCallDie( |
+ build_utils.CheckOutput( |
['zip', '-r', '-1', apk_path_abs, 'lib'], |
- cwd=options.libraries_top_dir, |
- suppress_output=True) |
+ cwd=options.libraries_top_dir) |
shutil.copy(intermediate_path, options.output_apk_path) |
input_paths = [options.input_apk_path, options.libraries_top_dir] |