| 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_android.cc', | 10 'crypto_android.cc', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 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 } |
| OLD | NEW |