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

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

Issue 8536006: rpc example for directory file listing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed header 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
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 'buffer_list.dart',
25 'directory.dart', 25 'directory.dart',
26 'directory_impl.dart', 26 'directory_impl.dart',
27 'directory_exp.dart',
27 'eventhandler.dart', 28 'eventhandler.dart',
28 'file.dart', 29 'file.dart',
29 'file_impl.dart', 30 'file_impl.dart',
30 'input_stream.dart', 31 'input_stream.dart',
31 'output_stream.dart', 32 'output_stream.dart',
32 'string_stream.dart', 33 'string_stream.dart',
33 'platform.dart', 34 'platform.dart',
34 'platform_impl.dart', 35 'platform_impl.dart',
35 'process.dart', 36 'process.dart',
36 'process_impl.dart', 37 'process_impl.dart',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'include_dirs': [ 72 'include_dirs': [
72 '..', 73 '..',
73 ], 74 ],
74 'sources': [ 75 'sources': [
75 'builtin.cc', 76 'builtin.cc',
76 'builtin.h', 77 'builtin.h',
77 'dartutils.h', 78 'dartutils.h',
78 'dartutils.cc', 79 'dartutils.cc',
79 'directory.h', 80 'directory.h',
80 'directory.cc', 81 'directory.cc',
82 'directory_exp.cc',
81 'directory_posix.cc', 83 'directory_posix.cc',
82 'directory_win.cc', 84 'directory_win.cc',
83 'eventhandler.cc', 85 'eventhandler.cc',
84 'eventhandler.h', 86 'eventhandler.h',
85 'eventhandler_linux.cc', 87 'eventhandler_linux.cc',
86 'eventhandler_linux.h', 88 'eventhandler_linux.h',
87 'eventhandler_macos.cc', 89 'eventhandler_macos.cc',
88 'eventhandler_macos.h', 90 'eventhandler_macos.h',
89 'eventhandler_win.cc', 91 'eventhandler_win.cc',
90 'eventhandler_win.h', 92 'eventhandler_win.h',
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 ]}], 421 ]}],
420 ['OS=="win"', { 422 ['OS=="win"', {
421 'link_settings': { 423 'link_settings': {
422 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 424 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
423 }, 425 },
424 }], 426 }],
425 ], 427 ],
426 }, 428 },
427 ], 429 ],
428 } 430 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698