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

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

Issue 867113003: Revert r43217, r43215, r43208, r43207, and r43202. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/gen_snapshot.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',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'socket_win.cc', 52 'socket_win.cc',
53 'stdio.cc', 53 'stdio.cc',
54 'stdio.h', 54 'stdio.h',
55 'stdio_android.cc', 55 'stdio_android.cc',
56 'stdio_linux.cc', 56 'stdio_linux.cc',
57 'stdio_macos.cc', 57 'stdio_macos.cc',
58 'stdio_win.cc', 58 'stdio_win.cc',
59 ], 59 ],
60 'conditions': [ 60 'conditions': [
61 ['dart_io_support==1', { 61 ['dart_io_support==1', {
62 'conditions': [
63 ['dart_io_secure_socket==1', {
64 'sources!' : [
65 'secure_socket_unsupported.cc',
66 ],
67 }, { # else dart_io_secure_socket == 0
68 'sources!' : [
69 'net/nss_memio.cc',
70 'net/nss_memio.h',
71 'secure_socket.cc',
72 'secure_socket.h',
73 ],
74 }],
75 ],
76 'sources!' : [ 62 'sources!' : [
77 'filter_unsupported.cc', 63 'filter_unsupported.cc',
64 'secure_socket_unsupported.cc',
78 'io_service_unsupported.cc', 65 'io_service_unsupported.cc',
79 ], 66 ],
80 },{ # else dart_io_support == 0 67 },{ # else dart_io_support == 0
81 'sources!' : [ 68 'sources!' : [
82 'filter.cc', 69 'filter.cc',
83 'filter.h', 70 'filter.h',
84 'io_service.cc', 71 'io_service.cc',
85 'io_service.h', 72 'io_service.h',
86 'net/nss_memio.cc', 73 'net/nss_memio.cc',
87 'net/nss_memio.h', 74 'net/nss_memio.h',
88 'secure_socket.cc', 75 'secure_socket.cc',
89 'secure_socket.h', 76 'secure_socket.h',
90 ], 77 ],
91 }], 78 }],
92 ], 79 ],
93 } 80 }
OLDNEW
« no previous file with comments | « runtime/bin/gen_snapshot.cc ('k') | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698