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

Side by Side Diff: runtime/bin/bin.gypi

Issue 8506005: Merge the two buffer list implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from ager@ 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/buffer_list.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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',
11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc',
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'generate_builtin_cc_file', 15 'target_name': 'generate_builtin_cc_file',
16 'type': 'none', 16 'type': 'none',
17 'conditions': [ 17 'conditions': [
18 ['OS=="win"', { 18 ['OS=="win"', {
19 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], 19 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'],
20 }], 20 }],
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'builtin.dart', 23 'builtin.dart',
24 'buffer_list.dart',
24 'directory.dart', 25 'directory.dart',
25 'directory_impl.dart', 26 'directory_impl.dart',
26 'eventhandler.dart', 27 'eventhandler.dart',
27 'file.dart', 28 'file.dart',
28 'file_impl.dart', 29 'file_impl.dart',
29 'input_stream.dart', 30 'input_stream.dart',
30 'output_stream.dart', 31 'output_stream.dart',
31 'string_stream.dart', 32 'string_stream.dart',
32 'platform.dart', 33 'platform.dart',
33 'platform_impl.dart', 34 'platform_impl.dart',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 ]}], 419 ]}],
419 ['OS=="win"', { 420 ['OS=="win"', {
420 'link_settings': { 421 'link_settings': {
421 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 422 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
422 }, 423 },
423 }], 424 }],
424 ], 425 ],
425 }, 426 },
426 ], 427 ],
427 } 428 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/buffer_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698