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

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

Issue 2168193002: Fuchsia: Build standalone VM. Make it run "Hello, World!". (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 4 years, 5 months 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
« no previous file with comments | « runtime/bin/file_system_watcher_fuchsia.cc ('k') | runtime/bin/main.cc » ('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) 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 some C++ sources for the dart:io library. The other 5 # This file contains some C++ sources for the dart:io library. The other
6 # implementation files are in builtin_impl_sources.gypi. 6 # implementation files are in builtin_impl_sources.gypi.
7 { 7 {
8 'sources': [ 8 'sources': [
9 'eventhandler.cc', 9 'eventhandler.cc',
10 'eventhandler.h', 10 'eventhandler.h',
11 'eventhandler_android.cc', 11 'eventhandler_android.cc',
12 'eventhandler_android.h', 12 'eventhandler_android.h',
13 'eventhandler_fuchsia.cc',
14 'eventhandler_fuchsia.h',
13 'eventhandler_linux.cc', 15 'eventhandler_linux.cc',
14 'eventhandler_linux.h', 16 'eventhandler_linux.h',
15 'eventhandler_macos.cc', 17 'eventhandler_macos.cc',
16 'eventhandler_macos.h', 18 'eventhandler_macos.h',
17 'eventhandler_unsupported.cc', 19 'eventhandler_unsupported.cc',
18 'eventhandler_win.cc', 20 'eventhandler_win.cc',
19 'eventhandler_win.h', 21 'eventhandler_win.h',
20 'file_system_watcher.cc', 22 'file_system_watcher.cc',
21 'file_system_watcher.h', 23 'file_system_watcher.h',
22 'file_system_watcher_android.cc', 24 'file_system_watcher_android.cc',
25 'file_system_watcher_fuchsia.cc',
23 'file_system_watcher_linux.cc', 26 'file_system_watcher_linux.cc',
24 'file_system_watcher_macos.cc', 27 'file_system_watcher_macos.cc',
25 'file_system_watcher_unsupported.cc', 28 'file_system_watcher_unsupported.cc',
26 'file_system_watcher_win.cc', 29 'file_system_watcher_win.cc',
27 'filter.cc', 30 'filter.cc',
28 'filter.h', 31 'filter.h',
29 'filter_unsupported.cc', 32 'filter_unsupported.cc',
30 'io_service.cc', 33 'io_service.cc',
31 'io_service.h', 34 'io_service.h',
32 'io_service_no_ssl.cc', 35 'io_service_no_ssl.cc',
33 'io_service_no_ssl.h', 36 'io_service_no_ssl.h',
34 'io_service_unsupported.cc', 37 'io_service_unsupported.cc',
35 'platform.cc', 38 'platform.cc',
36 'platform.h', 39 'platform.h',
37 'platform_android.cc', 40 'platform_android.cc',
41 'platform_fuchsia.cc',
38 'platform_linux.cc', 42 'platform_linux.cc',
39 'platform_macos.cc', 43 'platform_macos.cc',
40 'platform_unsupported.cc', 44 'platform_unsupported.cc',
41 'platform_win.cc', 45 'platform_win.cc',
42 'process.cc', 46 'process.cc',
43 'process.h', 47 'process.h',
44 'process_android.cc', 48 'process_android.cc',
49 'process_fuchsia.cc',
45 'process_linux.cc', 50 'process_linux.cc',
46 'process_macos.cc', 51 'process_macos.cc',
47 'process_unsupported.cc', 52 'process_unsupported.cc',
48 'process_win.cc', 53 'process_win.cc',
49 'reference_counting.h', 54 'reference_counting.h',
50 'root_certificates_unsupported.cc', 55 'root_certificates_unsupported.cc',
51 'secure_socket.h', 56 'secure_socket.h',
52 'secure_socket_boringssl.cc', 57 'secure_socket_boringssl.cc',
53 'secure_socket_boringssl.h', 58 'secure_socket_boringssl.h',
54 'secure_socket_ios.cc', 59 'secure_socket_ios.cc',
55 'secure_socket_ios.h', 60 'secure_socket_ios.h',
56 'secure_socket_macos.cc', 61 'secure_socket_macos.cc',
57 'secure_socket_macos.h', 62 'secure_socket_macos.h',
58 'secure_socket_unsupported.cc', 63 'secure_socket_unsupported.cc',
59 'socket.cc', 64 'socket.cc',
60 'socket.h', 65 'socket.h',
61 'socket_android.cc', 66 'socket_android.cc',
62 'socket_android.h', 67 'socket_android.h',
68 'socket_fuchsia.cc',
69 'socket_fuchsia.h',
63 'socket_linux.cc', 70 'socket_linux.cc',
64 'socket_linux.h', 71 'socket_linux.h',
65 'socket_macos.cc', 72 'socket_macos.cc',
66 'socket_macos.h', 73 'socket_macos.h',
67 'socket_unsupported.cc', 74 'socket_unsupported.cc',
68 'socket_win.cc', 75 'socket_win.cc',
69 'socket_win.h', 76 'socket_win.h',
70 'stdio.cc', 77 'stdio.cc',
71 'stdio.h', 78 'stdio.h',
72 'stdio_android.cc', 79 'stdio_android.cc',
80 'stdio_fuchsia.cc',
73 'stdio_linux.cc', 81 'stdio_linux.cc',
74 'stdio_macos.cc', 82 'stdio_macos.cc',
75 'stdio_unsupported.cc', 83 'stdio_unsupported.cc',
76 'stdio_win.cc', 84 'stdio_win.cc',
77 ], 85 ],
78 } 86 }
OLDNEW
« no previous file with comments | « runtime/bin/file_system_watcher_fuchsia.cc ('k') | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698