Re-add v8_shell target to v8.gyp. Patch by Joel Stanley.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2403 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
kasperl@chromium.org 2009-07-09 05:25:08 +00:00
parent 68f5664689
commit 1dbb07fecc

View File

@ -515,6 +515,22 @@
'sources': [
'../../src/mksnapshot.cc',
],
}
},
{
'target_name': 'v8_shell',
'type': 'executable',
'dependencies': [
'v8'
],
'sources': [
'../../samples/shell.cc',
],
'conditions': [
[ 'OS=="win"', {
# This could be gotten by not setting chromium_code, if that's OK.
'defines': ['_CRT_SECURE_NO_WARNINGS'],
}],
],
},
],
}