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

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

Issue 11360121: When building standalone Dart executable, put implementation of dart:io natives in a separate libra… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix grammar. Created 8 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 # This file contains all C++ sources for the dart:builtin and dart:io 5 # This file contains all C++ sources for the dart:builtin library and
6 # libraries. 6 # some of the C++ sources for the dart:io library. The rest are in
7 # io_impl_sources.gypi.
7 { 8 {
8 'sources': [ 9 'sources': [
9 'io_buffer.cc', 10 'io_buffer.cc',
10 'io_buffer.h', 11 'io_buffer.h',
11 'common.cc', 12 'common.cc',
12 'crypto.cc', 13 'crypto.cc',
13 'crypto_android.cc', 14 'crypto_android.cc',
14 'crypto_linux.cc', 15 'crypto_linux.cc',
15 'crypto_macos.cc', 16 'crypto_macos.cc',
16 'crypto_win.cc', 17 'crypto_win.cc',
17 'dartutils.cc', 18 'dartutils.cc',
18 'dartutils.h', 19 'dartutils.h',
19 'dbg_connection.cc', 20 'dbg_connection.cc',
20 'dbg_connection.h', 21 'dbg_connection.h',
21 'dbg_connection_android.cc', 22 'dbg_connection_android.cc',
22 'dbg_connection_linux.cc', 23 'dbg_connection_linux.cc',
23 'dbg_connection_linux.h', 24 'dbg_connection_linux.h',
24 'dbg_connection_macos.cc', 25 'dbg_connection_macos.cc',
25 'dbg_connection_macos.h', 26 'dbg_connection_macos.h',
26 'dbg_connection_win.cc', 27 'dbg_connection_win.cc',
27 'dbg_connection_win.h', 28 'dbg_connection_win.h',
28 'dbg_message.h', 29 'dbg_message.h',
29 'dbg_message.cc', 30 'dbg_message.cc',
30 'directory.cc', 31 'directory.cc',
31 'directory.h', 32 'directory.h',
32 'directory_android.cc', 33 'directory_android.cc',
33 'directory_linux.cc', 34 'directory_linux.cc',
34 'directory_macos.cc', 35 'directory_macos.cc',
35 'directory_win.cc', 36 'directory_win.cc',
36 'eventhandler.cc',
37 'eventhandler.h',
38 'eventhandler_android.cc',
39 'eventhandler_linux.cc',
40 'eventhandler_linux.h',
41 'eventhandler_macos.cc',
42 'eventhandler_macos.h',
43 'eventhandler_win.cc',
44 'eventhandler_win.h',
45 'extensions.h', 37 'extensions.h',
46 'extensions.cc', 38 'extensions.cc',
47 'extensions_android.cc', 39 'extensions_android.cc',
48 'extensions_linux.cc', 40 'extensions_linux.cc',
49 'extensions_macos.cc', 41 'extensions_macos.cc',
50 'extensions_win.cc', 42 'extensions_win.cc',
51 'file.cc', 43 'file.cc',
52 'file.h', 44 'file.h',
53 'file_android.cc', 45 'file_android.cc',
54 'file_linux.cc', 46 'file_linux.cc',
55 'file_macos.cc', 47 'file_macos.cc',
56 'file_win.cc', 48 'file_win.cc',
57 'file_test.cc', 49 'file_test.cc',
58 'fdutils.h', 50 'fdutils.h',
59 'fdutils_android.cc', 51 'fdutils_android.cc',
60 'fdutils_linux.cc', 52 'fdutils_linux.cc',
61 'fdutils_macos.cc', 53 'fdutils_macos.cc',
62 'hashmap_test.cc', 54 'hashmap_test.cc',
63 'isolate_data.h', 55 'isolate_data.h',
64 'platform.cc', 56 'platform.cc',
65 'platform.h', 57 'platform.h',
66 'platform_android.cc', 58 'platform_android.cc',
67 'platform_linux.cc', 59 'platform_linux.cc',
68 'platform_macos.cc', 60 'platform_macos.cc',
69 'platform_win.cc', 61 'platform_win.cc',
70 'process.cc',
71 'process.h',
72 'process_android.cc',
73 'process_linux.cc',
74 'process_macos.cc',
75 'process_win.cc',
76 'socket.cc',
77 'socket.h',
78 'socket_android.cc',
79 'socket_linux.cc',
80 'socket_macos.cc',
81 'socket_win.cc',
82 'set.h', 62 'set.h',
83 'set_test.cc', 63 'set_test.cc',
84 'thread.h', 64 'thread.h',
85 'utils.h', 65 'utils.h',
86 'utils_android.cc', 66 'utils_android.cc',
87 'utils_linux.cc', 67 'utils_linux.cc',
88 'utils_macos.cc', 68 'utils_macos.cc',
89 'utils_win.cc', 69 'utils_win.cc',
90 ], 70 ],
91 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698