OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'builtin_in_cc_file': 'builtin_in.cc', | 7 'builtin_in_cc_file': 'builtin_in.cc', |
8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
9 'snapshot_in_cc_file': 'snapshot_in.cc', | 9 'snapshot_in_cc_file': 'snapshot_in.cc', |
10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', | 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', |
(...skipping 10 matching lines...) Expand all Loading... |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 'builtin.dart', | 23 'builtin.dart', |
24 'directory.dart', | 24 'directory.dart', |
25 'directory_impl.dart', | 25 'directory_impl.dart', |
26 'eventhandler.dart', | 26 'eventhandler.dart', |
27 'file.dart', | 27 'file.dart', |
28 'file_impl.dart', | 28 'file_impl.dart', |
29 'input_stream.dart', | 29 'input_stream.dart', |
30 'output_stream.dart', | 30 'output_stream.dart', |
| 31 'string_stream.dart', |
31 'process.dart', | 32 'process.dart', |
32 'process_impl.dart', | 33 'process_impl.dart', |
33 'socket.dart', | 34 'socket.dart', |
34 'socket_impl.dart', | 35 'socket_impl.dart', |
35 'socket_stream.dart', | 36 'socket_stream.dart', |
36 'timer.dart', | 37 'timer.dart', |
37 'timer_impl.dart', | 38 'timer_impl.dart', |
38 ], | 39 ], |
39 'actions': [ | 40 'actions': [ |
40 { | 41 { |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 ]}], | 401 ]}], |
401 ['OS=="win"', { | 402 ['OS=="win"', { |
402 'link_settings': { | 403 'link_settings': { |
403 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 404 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
404 }, | 405 }, |
405 }], | 406 }], |
406 ], | 407 ], |
407 }, | 408 }, |
408 ], | 409 ], |
409 } | 410 } |
OLD | NEW |