Index: build/android/gyp/proguard.py |
diff --git a/build/android/gyp/proguard.py b/build/android/gyp/proguard.py |
index 22000be9dbbb1eed238c9c6e9a0fc10c15c196c9..b27365b7fc1607b78c23a261b9e5c2e88ec7e3e2 100755 |
--- a/build/android/gyp/proguard.py |
+++ b/build/android/gyp/proguard.py |
@@ -20,7 +20,8 @@ def DoProguard(options): |
# the output. |
if os.path.exists(options.output_path): |
os.remove(options.output_path) |
- proguard_cmd = [options.proguard_path, |
+ proguard_cmd = ['java', '-jar', |
+ options.proguard_path, |
'-injars', injars, |
'-outjars', outjars, |
'-libraryjars', libraryjars, |