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

Unified Diff: bin/bin.gypi

Issue 8673002: - Refactor the isolate callback mechanism to also include creation of the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years, 1 month 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 | bin/builtin.h » ('j') | bin/builtin.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/bin.gypi
===================================================================
--- bin/bin.gypi (revision 1771)
+++ bin/bin.gypi (working copy)
@@ -73,7 +73,7 @@
'..',
],
'sources': [
- 'builtin.cc',
+ 'builtin_natives.cc',
'builtin.h',
'dartutils.h',
'dartutils.cc',
@@ -114,8 +114,6 @@
'socket_macos.cc',
'socket_win.cc',
'set.h',
- # Include generated source files.
- '<(builtin_cc_file)',
],
'conditions': [
['OS=="win"', {'sources/' : [
@@ -136,7 +134,10 @@
],
'sources': [
'main.cc',
+ 'builtin.cc',
'snapshot_empty.cc',
+ # Include generated source files.
+ '<(builtin_cc_file)',
],
'conditions': [
['OS=="win"', {
@@ -158,6 +159,9 @@
],
'sources': [
'gen_snapshot.cc',
+ 'builtin.cc',
+ # Include generated source files.
+ '<(builtin_cc_file)',
],
'conditions': [
['OS=="win"', {
@@ -205,7 +209,7 @@
'target_name': 'dart_bin',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_without_corelib',
'libdart_builtin',
'generate_snapshot_file',
],
@@ -214,6 +218,7 @@
],
'sources': [
'main.cc',
+ 'builtin_nolib.cc',
'<(snapshot_cc_file)',
],
'conditions': [
@@ -227,7 +232,7 @@
'target_name': 'dart',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_without_corelib',
'libdart_builtin',
'generate_snapshot_file',
],
@@ -236,6 +241,7 @@
],
'sources': [
'main.cc',
+ 'builtin_nolib.cc',
'<(snapshot_cc_file)',
],
'conditions': [
« no previous file with comments | « no previous file | bin/builtin.h » ('j') | bin/builtin.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698