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

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

Issue 19627004: Add echo and line modes to Stdin. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing files. Created 7 years, 4 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') | runtime/bin/stdin.h » ('J')
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 29 matching lines...) Expand all
40 'secure_socket.cc', 40 'secure_socket.cc',
41 'secure_socket.h', 41 'secure_socket.h',
42 'secure_socket_unsupported.cc', 42 'secure_socket_unsupported.cc',
43 'socket.cc', 43 'socket.cc',
44 'socket.h', 44 'socket.h',
45 'socket_android.cc', 45 'socket_android.cc',
46 'socket_linux.cc', 46 'socket_linux.cc',
47 'socket_macos.cc', 47 'socket_macos.cc',
48 'socket_win.cc', 48 'socket_win.cc',
49 'stdin.cc', 49 'stdin.cc',
50 'stdin.h',
51 'stdin_linux.cc',
50 ], 52 ],
51 'conditions': [ 53 'conditions': [
52 ['dart_io_support==1', { 54 ['dart_io_support==1', {
53 'sources!' : [ 55 'sources!' : [
54 'filter_unsupported.cc', 56 'filter_unsupported.cc',
55 'secure_socket_unsupported.cc', 57 'secure_socket_unsupported.cc',
56 ], 58 ],
57 },{ # else dart_io_support == 0 59 },{ # else dart_io_support == 0
58 'sources!' : [ 60 'sources!' : [
59 'filter.cc', 61 'filter.cc',
60 'filter.h', 62 'filter.h',
61 'net/nss_memio.cc', 63 'net/nss_memio.cc',
62 'net/nss_memio.h', 64 'net/nss_memio.h',
63 'secure_socket.cc', 65 'secure_socket.cc',
64 'secure_socket.h', 66 'secure_socket.h',
65 ], 67 ],
66 }], 68 }],
67 ], 69 ],
68 } 70 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | runtime/bin/stdin.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698