Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Unified Diff: bin/bin.gypi

Issue 8805014: Restore the rule to build a no snapshot binary of dart as Srdjan feels it is still needed for deb... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/bin.gypi
===================================================================
--- bin/bin.gypi (revision 2079)
+++ bin/bin.gypi (working copy)
@@ -150,6 +150,7 @@
]
},
{
+ # dart binary with a snapshot of corelibs built in.
'target_name': 'dart',
'type': 'executable',
'dependencies': [
@@ -173,6 +174,31 @@
}]],
},
{
+ # dart binary without any snapshot built in.
+ 'target_name': 'dart_no_snapshot',
+ 'type': 'executable',
+ 'dependencies': [
+ 'libdart_withcore',
+ 'libdart_builtin',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'main.cc',
+ 'builtin.cc',
+ # Include generated source files.
+ '<(builtin_cc_file)',
+ 'snapshot_empty.cc',
+ ],
+ 'conditions': [
+ ['OS=="win"', {
+ 'link_settings': {
+ 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
+ },
+ }]],
+ },
+ {
'target_name': 'process_test',
'type': 'executable',
'sources': [
@@ -184,7 +210,7 @@
'type': 'executable',
'dependencies': [
'libdart_withcore',
- 'libdart_builtin',
+ 'libdart_builtin',
'generate_snapshot_test_dat_file',
],
'include_dirs': [
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698