summaryrefslogtreecommitdiff
path: root/chromium/build/android/gyp/proguard.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/build/android/gyp/proguard.py')
-rwxr-xr-xchromium/build/android/gyp/proguard.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/chromium/build/android/gyp/proguard.py b/chromium/build/android/gyp/proguard.py
index b5b6ff9023a..77cff8300b9 100755
--- a/chromium/build/android/gyp/proguard.py
+++ b/chromium/build/android/gyp/proguard.py
@@ -40,8 +40,6 @@ def _ParseOptions(args):
parser.add_option('--is-test', action='store_true',
help='If true, extra proguard options for instrumentation tests will be '
'added.')
- parser.add_option('--tested-apk-info', help='Path to the proguard .info file '
- 'for the tested apk')
parser.add_option('--classpath', action='append',
help='Classpath for proguard.')
parser.add_option('--stamp', help='Path to touch on success.')
@@ -82,9 +80,6 @@ def main(args):
if options.mapping:
proguard.mapping(options.mapping)
- if options.tested_apk_info:
- proguard.tested_apk_info(options.tested_apk_info)
-
classpath = list(set(options.classpath))
proguard.libraryjars(classpath)
proguard.verbose(options.verbose)