Don't depend on libdart_io in run_vm_tests and gen_snapshot.

This fixes an issue where we would compile the eventhandler and
file-system-watcher for the host toolchain.

BUG=https://code.google.com/p/dart/issues/detail?id=17002
R=iposva@google.com

Review URL: https://codereview.chromium.org//169753003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@33010 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ajohnsen@google.com
2014-02-25 09:59:18 +00:00
parent 8f200400dd
commit b052d69661
5 changed files with 22 additions and 26 deletions
-4
View File
@@ -170,7 +170,6 @@
{
'target_name': 'libdart_io',
'type': 'static_library',
'toolsets':['target', 'host'],
'include_dirs': [
'..',
],
@@ -256,7 +255,6 @@
'dependencies': [
'libdart_withcore',
'libdart_builtin',
'libdart_io',
],
'include_dirs': [
'..',
@@ -492,7 +490,6 @@
{
'target_name': 'run_vm_tests',
'type': 'executable',
'toolsets':['target'],
'dependencies': [
'libdart_withcore',
'libdart_builtin',
@@ -548,7 +545,6 @@
'dependencies': [
'libdart_withcore',
'libdart_builtin',
'libdart_io',
'generate_snapshot_file#host',
'generate_snapshot_test_dat_file#host',
],
+8 -8
View File
@@ -7,8 +7,12 @@
# io_impl_sources.gypi.
{
'sources': [
'io_buffer.cc',
'io_buffer.h',
'crypto.cc',
'crypto.h',
'crypto_android.cc',
'crypto_linux.cc',
'crypto_macos.cc',
'crypto_win.cc',
'dartutils.cc',
'dartutils.h',
'dbg_connection.cc',
@@ -41,17 +45,13 @@
'file_macos.cc',
'file_win.cc',
'file_test.cc',
'file_system_watcher.cc',
'file_system_watcher.h',
'file_system_watcher_android.cc',
'file_system_watcher_linux.cc',
'file_system_watcher_macos.cc',
'file_system_watcher_win.cc',
'fdutils.h',
'fdutils_android.cc',
'fdutils_linux.cc',
'fdutils_macos.cc',
'hashmap_test.cc',
'io_buffer.cc',
'io_buffer.h',
'isolate_data.h',
'signal_blocker.h',
'thread.h',
+1 -7
View File
@@ -23,6 +23,7 @@ namespace bin {
// Advanced I/O classes like sockets and process management are implemented
// using functions listed in io_natives.cc.
#define BUILTIN_NATIVE_LIST(V) \
V(Crypto_GetRandomBytes, 1) \
V(Directory_Exists, 1) \
V(Directory_Create, 1) \
V(Directory_Current, 0) \
@@ -61,13 +62,6 @@ namespace bin {
V(File_GetStdioHandleType, 1) \
V(File_GetType, 2) \
V(File_AreIdentical, 2) \
V(FileSystemWatcher_CloseWatcher, 1) \
V(FileSystemWatcher_GetSocketId, 2) \
V(FileSystemWatcher_InitWatcher, 0) \
V(FileSystemWatcher_IsSupported, 0) \
V(FileSystemWatcher_ReadEvents, 2) \
V(FileSystemWatcher_UnwatchPath, 2) \
V(FileSystemWatcher_WatchPath, 4) \
V(Logger_PrintString, 1)
BUILTIN_NATIVE_LIST(DECLARE_FUNCTION);
+6 -6
View File
@@ -6,12 +6,6 @@
# implementation files are in builtin_impl_sources.gypi.
{
'sources': [
'crypto.cc',
'crypto.h',
'crypto_android.cc',
'crypto_linux.cc',
'crypto_macos.cc',
'crypto_win.cc',
'eventhandler.cc',
'eventhandler.h',
'eventhandler_android.cc',
@@ -21,6 +15,12 @@
'eventhandler_macos.h',
'eventhandler_win.cc',
'eventhandler_win.h',
'file_system_watcher.cc',
'file_system_watcher.h',
'file_system_watcher_android.cc',
'file_system_watcher_linux.cc',
'file_system_watcher_macos.cc',
'file_system_watcher_win.cc',
'filter.cc',
'filter.h',
'filter_unsupported.cc',
+7 -1
View File
@@ -20,8 +20,14 @@ namespace bin {
// Some classes, like File and Directory, list their implementations in
// builtin_natives.cc instead.
#define IO_NATIVE_LIST(V) \
V(Crypto_GetRandomBytes, 1) \
V(EventHandler_SendData, 3) \
V(FileSystemWatcher_CloseWatcher, 1) \
V(FileSystemWatcher_GetSocketId, 2) \
V(FileSystemWatcher_InitWatcher, 0) \
V(FileSystemWatcher_IsSupported, 0) \
V(FileSystemWatcher_ReadEvents, 2) \
V(FileSystemWatcher_UnwatchPath, 2) \
V(FileSystemWatcher_WatchPath, 4) \
V(Filter_CreateZLibDeflate, 3) \
V(Filter_CreateZLibInflate, 1) \
V(Filter_End, 1) \