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

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

Issue 18516002: Add Stdio.readByteSync and Stdio.readLineSync. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle \r\r\n. Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/io_natives.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 'crypto.cc', 9 'crypto.cc',
10 'crypto_android.cc', 10 'crypto_android.cc',
(...skipping 19 matching lines...) Expand all
30 'platform_android.cc', 30 'platform_android.cc',
31 'platform_linux.cc', 31 'platform_linux.cc',
32 'platform_macos.cc', 32 'platform_macos.cc',
33 'platform_win.cc', 33 'platform_win.cc',
34 'process.cc', 34 'process.cc',
35 'process.h', 35 'process.h',
36 'process_android.cc', 36 'process_android.cc',
37 'process_linux.cc', 37 'process_linux.cc',
38 'process_macos.cc', 38 'process_macos.cc',
39 'process_win.cc', 39 'process_win.cc',
40 'secure_socket.cc',
41 'secure_socket.h',
42 'secure_socket_unsupported.cc',
40 'socket.cc', 43 'socket.cc',
41 'socket.h', 44 'socket.h',
42 'socket_android.cc', 45 'socket_android.cc',
43 'socket_linux.cc', 46 'socket_linux.cc',
44 'socket_macos.cc', 47 'socket_macos.cc',
45 'socket_win.cc', 48 'socket_win.cc',
46 'secure_socket.cc', 49 'stdin.cc',
47 'secure_socket.h',
48 'secure_socket_unsupported.cc',
49 ], 50 ],
50 'conditions': [ 51 'conditions': [
51 ['dart_io_support==1', { 52 ['dart_io_support==1', {
52 'sources!' : [ 53 'sources!' : [
53 'filter_unsupported.cc', 54 'filter_unsupported.cc',
54 'secure_socket_unsupported.cc', 55 'secure_socket_unsupported.cc',
55 ], 56 ],
56 },{ # else dart_io_support == 0 57 },{ # else dart_io_support == 0
57 'sources!' : [ 58 'sources!' : [
58 'filter.cc', 59 'filter.cc',
59 'filter.h', 60 'filter.h',
60 'net/nss_memio.cc', 61 'net/nss_memio.cc',
61 'net/nss_memio.h', 62 'net/nss_memio.h',
62 'secure_socket.cc', 63 'secure_socket.cc',
63 'secure_socket.h', 64 'secure_socket.h',
64 ], 65 ],
65 }], 66 }],
66 ], 67 ],
67 } 68 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698