Index: build/android/gyp/pack_relocations.py |
diff --git a/build/android/gyp/pack_relocations.py b/build/android/gyp/pack_relocations.py |
index 02e449999382b1e9518f057af39aff830009b2d8..e1122653a2ef87be9cfd036e801be45f1651693b 100755 |
--- a/build/android/gyp/pack_relocations.py |
+++ b/build/android/gyp/pack_relocations.py |
@@ -20,7 +20,6 @@ irrespective of any --enable-packing setting. Typically this would be |
import optparse |
import os |
-import shlex |
import shutil |
import sys |
import tempfile |
@@ -69,7 +68,8 @@ def main(args): |
options, _ = parser.parse_args(args) |
enable_packing = (options.enable_packing == '1' and |
options.configuration_name == 'Release') |
- exclude_packing_set = set(shlex.split(options.exclude_packing_list)) |
+ exclude_packing_set = set(build_utils.ParseGypList( |
+ options.exclude_packing_list)) |
libraries = [] |
for libs_arg in options.libraries: |