| 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 29 matching lines...) Expand all Loading... |
| 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_android.cc', |
| 52 'stdin_linux.cc', |
| 53 'stdin_macos.cc', |
| 54 'stdin_win.cc', |
| 50 ], | 55 ], |
| 51 'conditions': [ | 56 'conditions': [ |
| 52 ['dart_io_support==1', { | 57 ['dart_io_support==1', { |
| 53 'sources!' : [ | 58 'sources!' : [ |
| 54 'filter_unsupported.cc', | 59 'filter_unsupported.cc', |
| 55 'secure_socket_unsupported.cc', | 60 'secure_socket_unsupported.cc', |
| 56 ], | 61 ], |
| 57 },{ # else dart_io_support == 0 | 62 },{ # else dart_io_support == 0 |
| 58 'sources!' : [ | 63 'sources!' : [ |
| 59 'filter.cc', | 64 'filter.cc', |
| 60 'filter.h', | 65 'filter.h', |
| 61 'net/nss_memio.cc', | 66 'net/nss_memio.cc', |
| 62 'net/nss_memio.h', | 67 'net/nss_memio.h', |
| 63 'secure_socket.cc', | 68 'secure_socket.cc', |
| 64 'secure_socket.h', | 69 'secure_socket.h', |
| 65 ], | 70 ], |
| 66 }], | 71 }], |
| 67 ], | 72 ], |
| 68 } | 73 } |
| OLD | NEW |