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 'eventhandler.cc', | 9 'eventhandler.cc', |
10 'eventhandler.h', | 10 'eventhandler.h', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'socket_win.cc', | 52 'socket_win.cc', |
53 'stdio.cc', | 53 'stdio.cc', |
54 'stdio.h', | 54 'stdio.h', |
55 'stdio_android.cc', | 55 'stdio_android.cc', |
56 'stdio_linux.cc', | 56 'stdio_linux.cc', |
57 'stdio_macos.cc', | 57 'stdio_macos.cc', |
58 'stdio_win.cc', | 58 'stdio_win.cc', |
59 ], | 59 ], |
60 'conditions': [ | 60 'conditions': [ |
61 ['dart_io_support==1', { | 61 ['dart_io_support==1', { |
| 62 'conditions': [ |
| 63 ['dart_io_secure_socket==1', { |
| 64 'sources!' : [ |
| 65 'secure_socket_unsupported.cc', |
| 66 ], |
| 67 }, { # else dart_io_secure_socket == 0 |
| 68 'sources!' : [ |
| 69 'net/nss_memio.cc', |
| 70 'net/nss_memio.h', |
| 71 'secure_socket.cc', |
| 72 'secure_socket.h', |
| 73 ], |
| 74 }], |
| 75 ], |
62 'sources!' : [ | 76 'sources!' : [ |
63 'filter_unsupported.cc', | 77 'filter_unsupported.cc', |
64 'secure_socket_unsupported.cc', | |
65 'io_service_unsupported.cc', | 78 'io_service_unsupported.cc', |
66 ], | 79 ], |
67 },{ # else dart_io_support == 0 | 80 },{ # else dart_io_support == 0 |
68 'sources!' : [ | 81 'sources!' : [ |
69 'filter.cc', | 82 'filter.cc', |
70 'filter.h', | 83 'filter.h', |
71 'io_service.cc', | 84 'io_service.cc', |
72 'io_service.h', | 85 'io_service.h', |
73 'net/nss_memio.cc', | 86 'net/nss_memio.cc', |
74 'net/nss_memio.h', | 87 'net/nss_memio.h', |
75 'secure_socket.cc', | 88 'secure_socket.cc', |
76 'secure_socket.h', | 89 'secure_socket.h', |
77 ], | 90 ], |
78 }], | 91 }], |
79 ], | 92 ], |
80 } | 93 } |
OLD | NEW |