diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 18:04:50 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 18:04:50 +0000 |
commit | 92bba2412ff81813ab7f6809da9e7b542127e8b5 (patch) | |
tree | 772f21b18d3615178cf92b0e989c2bd2517301b7 /build/copy_test_data_ios.gypi | |
parent | 0307006a55e425b8d5876de52d4266e416f88cda (diff) | |
download | chromium_src-92bba2412ff81813ab7f6809da9e7b542127e8b5.zip chromium_src-92bba2412ff81813ab7f6809da9e7b542127e8b5.tar.gz chromium_src-92bba2412ff81813ab7f6809da9e7b542127e8b5.tar.bz2 |
Fix handling of spaces with paths in copy_test_data.py
This allows copying files with spaces in the paths (most notably,
profiles, which have a number of files containing spaces).
There are two fixes:
- Input/output lists \-escape spaces so that gyp will convert the output back into a list correctly.
- The argument list is no longer parsed by spaces, and the gyp call instead passes the input list as a list of separate arguments instead of one giant string.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/11293198
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166931 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/copy_test_data_ios.gypi')
-rw-r--r-- | build/copy_test_data_ios.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/copy_test_data_ios.gypi b/build/copy_test_data_ios.gypi index 150df6e..56a222f 100644 --- a/build/copy_test_data_ios.gypi +++ b/build/copy_test_data_ios.gypi @@ -43,6 +43,6 @@ 'python', '<(DEPTH)/build/copy_test_data_ios.py', '-o', '<(PRODUCT_DIR)/<(_target_name).app/<(test_data_prefix)', - '<(_inputs)', + '<@(_inputs)', ], } |