Index: components/cronet/tools/extract_from_jars.py |
diff --git a/components/cronet/tools/extract_from_jars.py b/components/cronet/tools/extract_from_jars.py |
index 9e573987ec2b99918f7d5e1bc8670333fd2c2880..ee32b940fec703af7aba9b9ef26f1cd8d739d184 100755 |
--- a/components/cronet/tools/extract_from_jars.py |
+++ b/components/cronet/tools/extract_from_jars.py |
@@ -22,7 +22,7 @@ def ExtractJars(options): |
jar_cwd = options.classes_dir |
build_utils.DeleteDirectory(jar_cwd) |
build_utils.MakeDirectory(jar_cwd) |
- for jar in build_utils.ParseGypList(options.jars): |
+ for jar in build_utils.ParseGnList(options.jars): |
jar_path = os.path.abspath(jar) |
jar_cmd = ['jar', 'xf', jar_path] |
build_utils.CheckOutput(jar_cmd, cwd=jar_cwd) |