| 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_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 } |
| OLD | NEW |