| OLD | NEW |
| 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.h', | 10 'crypto.h', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'process_win.cc', | 43 'process_win.cc', |
| 44 'secure_socket.cc', | 44 'secure_socket.cc', |
| 45 'secure_socket.h', | 45 'secure_socket.h', |
| 46 'secure_socket_unsupported.cc', | 46 'secure_socket_unsupported.cc', |
| 47 'socket.cc', | 47 'socket.cc', |
| 48 'socket.h', | 48 'socket.h', |
| 49 'socket_android.cc', | 49 'socket_android.cc', |
| 50 'socket_linux.cc', | 50 'socket_linux.cc', |
| 51 'socket_macos.cc', | 51 'socket_macos.cc', |
| 52 'socket_win.cc', | 52 'socket_win.cc', |
| 53 'stdin.cc', | 53 'stdio.cc', |
| 54 'stdin.h', | 54 'stdio.h', |
| 55 'stdin_android.cc', | 55 'stdio_android.cc', |
| 56 'stdin_linux.cc', | 56 'stdio_linux.cc', |
| 57 'stdin_macos.cc', | 57 'stdio_macos.cc', |
| 58 'stdin_win.cc', | 58 'stdio_win.cc', |
| 59 ], | 59 ], |
| 60 'conditions': [ | 60 'conditions': [ |
| 61 ['dart_io_support==1', { | 61 ['dart_io_support==1', { |
| 62 'sources!' : [ | 62 'sources!' : [ |
| 63 'filter_unsupported.cc', | 63 'filter_unsupported.cc', |
| 64 'secure_socket_unsupported.cc', | 64 'secure_socket_unsupported.cc', |
| 65 'io_service_unsupported.cc', | 65 'io_service_unsupported.cc', |
| 66 ], | 66 ], |
| 67 },{ # else dart_io_support == 0 | 67 },{ # else dart_io_support == 0 |
| 68 'sources!' : [ | 68 'sources!' : [ |
| 69 'filter.cc', | 69 'filter.cc', |
| 70 'filter.h', | 70 'filter.h', |
| 71 'io_service.cc', | 71 'io_service.cc', |
| 72 'io_service.h', | 72 'io_service.h', |
| 73 'net/nss_memio.cc', | 73 'net/nss_memio.cc', |
| 74 'net/nss_memio.h', | 74 'net/nss_memio.h', |
| 75 'secure_socket.cc', | 75 'secure_socket.cc', |
| 76 'secure_socket.h', | 76 'secure_socket.h', |
| 77 ], | 77 ], |
| 78 }], | 78 }], |
| 79 ], | 79 ], |
| 80 } | 80 } |
| OLD | NEW |