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] |