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

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') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/bin.gypi
===================================================================
--- bin/bin.gypi (revision 1955)
+++ 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/' : [
@@ -124,11 +122,28 @@
],
},
{
+ 'target_name': 'libdart_withcore',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'libdart_lib_withcore',
+ 'libdart_vm',
+ 'libjscre',
+ 'libdouble_conversion',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ '../include/dart_api.h',
+ '../vm/dart_api_impl.cc',
+ ],
+ },
+ {
# Completely statically linked dart binary.
'target_name': 'dart_no_snapshot',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_withcore',
'libdart_builtin',
],
'include_dirs': [
@@ -137,6 +152,9 @@
'sources': [
'main.cc',
'snapshot_empty.cc',
+ 'builtin.cc',
+ # Include generated source files.
+ '<(builtin_cc_file)',
],
'conditions': [
['OS=="win"', {
@@ -150,7 +168,7 @@
'target_name': 'gen_snapshot',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_withcore',
'libdart_builtin',
],
'include_dirs': [
@@ -158,6 +176,9 @@
],
'sources': [
'gen_snapshot.cc',
+ 'builtin.cc',
+ # Include generated source files.
+ '<(builtin_cc_file)',
],
'conditions': [
['OS=="win"', {
@@ -214,6 +235,7 @@
],
'sources': [
'main.cc',
+ 'builtin_nolib.cc',
'<(snapshot_cc_file)',
],
'conditions': [
@@ -234,7 +256,7 @@
'target_name': 'run_vm_tests',
'type': 'executable',
'dependencies': [
- 'libdart',
+ 'libdart_withcore',
'generate_snapshot_test_dat_file',
],
'include_dirs': [
« no previous file with comments | « no previous file | bin/builtin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698