Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Unified Diff: build/android/gyp/apk_obfuscate.py

Issue 1647353002: Use gn_helpers to [se]serialize GN lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@python_impl
Patch Set: more Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/gyp/aidl.py ('k') | build/android/gyp/apkbuilder.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/apk_obfuscate.py
diff --git a/build/android/gyp/apk_obfuscate.py b/build/android/gyp/apk_obfuscate.py
index 99b6176f90ebfbca83a2be518a09b36cb66e3032..04a04b3dd86cae9cb4746b83da3bb09ff22edd1b 100755
--- a/build/android/gyp/apk_obfuscate.py
+++ b/build/android/gyp/apk_obfuscate.py
@@ -101,10 +101,10 @@ def DoProguard(options):
proguard = proguard_util.ProguardCmdBuilder(options.proguard_jar_path)
proguard.outjar(options.obfuscated_jar_path)
- input_jars = build_utils.ParseGypList(options.input_jars_paths)
+ input_jars = build_utils.ParseGnList(options.input_jars_paths)
exclude_paths = []
- configs = build_utils.ParseGypList(options.proguard_configs)
+ configs = build_utils.ParseGnList(options.proguard_configs)
if options.tested_apk_obfuscated_jar_path:
# configs should only contain the process_resources.py generated config.
assert len(configs) == 1, (
@@ -153,7 +153,7 @@ def _PossibleMultidexConfig(options):
def main(argv):
options, _ = ParseArgs(argv)
- input_jars = build_utils.ParseGypList(options.input_jars_paths)
+ input_jars = build_utils.ParseGnList(options.input_jars_paths)
if options.testapp:
dependency_class_filters = [
« no previous file with comments | « build/android/gyp/aidl.py ('k') | build/android/gyp/apkbuilder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698