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

Unified Diff: build/android/gyp/create_java_binary_script.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/create_dist_jar.py ('k') | build/android/gyp/create_test_runner_script.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/create_java_binary_script.py
diff --git a/build/android/gyp/create_java_binary_script.py b/build/android/gyp/create_java_binary_script.py
index d8af1bc684414428925003a74d52309f5b9ac91f..487bff41f90c8db8e0d4864368f105f51a5f48cf 100755
--- a/build/android/gyp/create_java_binary_script.py
+++ b/build/android/gyp/create_java_binary_script.py
@@ -88,11 +88,11 @@ def main(argv):
classpath = [options.jar_path]
for cp_arg in options.classpath:
- classpath += build_utils.ParseGypList(cp_arg)
+ classpath += build_utils.ParseGnList(cp_arg)
bootclasspath = []
for bootcp_arg in options.bootclasspath:
- bootclasspath += build_utils.ParseGypList(bootcp_arg)
+ bootclasspath += build_utils.ParseGnList(bootcp_arg)
run_dir = os.path.dirname(options.output)
bootclasspath = [os.path.relpath(p, run_dir) for p in bootclasspath]
« no previous file with comments | « build/android/gyp/create_dist_jar.py ('k') | build/android/gyp/create_test_runner_script.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698