Chromium Code Reviews
DescriptionFix missing variable MSVS expansion of copies arguments with Ninja.
The Visual Studio emulation does not expand the special
variables like 'VSInstallDir' into the 'copies' actions.
Here is a small broken example:
{
'targets': [
{
'target_name': 'Copy_Target',
'type': 'none',
'copies': [
{
'destination': '<(PRODUCT_DIR)',
'files': [
'$(VSInstallDir)\\bin\\cl.exe',
],
},
],
},
],
}
Patch from etienneb@chromium.org.
R=scottmg@chromium.org
Committed: https://code.google.com/p/gyp/source/detail?r=1870
Patch Set 1 #Patch Set 2 : fix unittest #
Total comments: 6
Patch Set 3 : fix scott comments #
Total comments: 1
Patch Set 4 : remove print #
Messages
Total messages: 10 (0 generated)
|
|||||||||||||||||||||||||||||||||||||