summaryrefslogtreecommitdiffstats
path: root/testing/gtest.gyp
diff options
context:
space:
mode:
authorglider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-09 14:19:27 +0000
committerglider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-09 14:19:27 +0000
commita5963c50b409b33ef220025dea5ea9053973131f (patch)
tree5728824341f5d90cd17f4f36f9020d132814c586 /testing/gtest.gyp
parent014ee2ce8d38414d8a1b34ffbeea7d7f12344a72 (diff)
downloadchromium_src-a5963c50b409b33ef220025dea5ea9053973131f.zip
chromium_src-a5963c50b409b33ef220025dea5ea9053973131f.tar.gz
chromium_src-a5963c50b409b33ef220025dea5ea9053973131f.tar.bz2
Fix the variable expansion prefix for copy_asan_dylib_path in the direct dependent settings.
According to https://code.google.com/p/gyp/wiki/InputFormatReference#Processing_Order, in order for the path variable to be expanded in the context of the dependent target dictionary, it should have the '>' prefix. BUG=228243 R=mark@chromium.org Review URL: https://codereview.chromium.org/18903002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210562 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing/gtest.gyp')
-rw-r--r--testing/gtest.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/gtest.gyp b/testing/gtest.gyp
index 0598e9b..517bd06 100644
--- a/testing/gtest.gyp
+++ b/testing/gtest.gyp
@@ -111,7 +111,7 @@
},
'postbuild_name': 'Copy ASan runtime dylib',
'action': [
- '<(copy_asan_dylib_path)',
+ '>(copy_asan_dylib_path)',
],
},
],