suriab / gyp

Automatically exported from code.google.com/p/gyp
0 stars 0 forks source link

'copies' does not work correctly when the source is a file generated in the same project #13

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Apparently 'copies' is not working correctly in all cases in which the 
source file is generated in the same project.

Original issue reported on code.google.com by bradnel...@google.com on 11 May 2009 at 1:37

GoogleCodeExporter commented 9 years ago
In particular look at:
npapi_layout_test_plugin.dll
in test_shell.gyp

Original comment by bradnel...@google.com on 11 May 2009 at 1:39

GoogleCodeExporter commented 9 years ago
Copies are currently implemented in VS as a build rule with an 
AdditionalDependencies 
on the source of the copy.  This means that VS tries to do the copy before the 
build, 
whereas gyp defines 'copies' as a post-build action.  VS post build actions 
have some 
hairy properties, so this may be a little involved to fix.

Original comment by sgk@chromium.org on 6 Aug 2009 at 5:51