Chromium Code Reviews| 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', |
| 11 'crypto_linux.cc', | 11 'crypto_linux.cc', |
| 12 'crypto_macos.cc', | 12 'crypto_macos.cc', |
| 13 'crypto_win.cc', | 13 'crypto_win.cc', |
| 14 'eventhandler.cc', | 14 'eventhandler.cc', |
| 15 'eventhandler.h', | 15 'eventhandler.h', |
| 16 'eventhandler_android.cc', | 16 'eventhandler_android.cc', |
| 17 'eventhandler_linux.cc', | 17 'eventhandler_linux.cc', |
| 18 'eventhandler_linux.h', | 18 'eventhandler_linux.h', |
| 19 'eventhandler_macos.cc', | 19 'eventhandler_macos.cc', |
| 20 'eventhandler_macos.h', | 20 'eventhandler_macos.h', |
| 21 'eventhandler_win.cc', | 21 'eventhandler_win.cc', |
| 22 'eventhandler_win.h', | 22 'eventhandler_win.h', |
| 23 'filter.cc', | 23 'filter.cc', |
| 24 'filter.h', | 24 'filter.h', |
| 25 'filter_unsupported.cc', | 25 'filter_unsupported.cc', |
| 26 'io_service.cc', | 26 'io_service.cc', |
| 27 'io_service.h', | 27 'io_service.h', |
| 28 'io_service_unsupported.cc', | |
| 28 'net/nss_memio.cc', | 29 'net/nss_memio.cc', |
| 29 'net/nss_memio.h', | 30 'net/nss_memio.h', |
| 30 'platform.cc', | 31 'platform.cc', |
| 31 'platform.h', | 32 'platform.h', |
| 32 'platform_android.cc', | 33 'platform_android.cc', |
| 33 'platform_linux.cc', | 34 'platform_linux.cc', |
| 34 'platform_macos.cc', | 35 'platform_macos.cc', |
| 35 'platform_win.cc', | 36 'platform_win.cc', |
| 36 'process.cc', | 37 'process.cc', |
| 37 'process.h', | 38 'process.h', |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 52 'stdin.h', | 53 'stdin.h', |
| 53 'stdin_android.cc', | 54 'stdin_android.cc', |
| 54 'stdin_linux.cc', | 55 'stdin_linux.cc', |
| 55 'stdin_macos.cc', | 56 'stdin_macos.cc', |
| 56 'stdin_win.cc', | 57 'stdin_win.cc', |
| 57 ], | 58 ], |
| 58 'conditions': [ | 59 'conditions': [ |
| 59 ['dart_io_support==1', { | 60 ['dart_io_support==1', { |
| 60 'sources!' : [ | 61 'sources!' : [ |
| 61 'filter_unsupported.cc', | 62 'filter_unsupported.cc', |
| 62 'secure_socket_unsupported.cc', | 63 'secure_socket_unsupported.cc', |
|
Bill Hesse
2013/09/25 16:25:54
Add io_service_unsupported.cc here.
But the probl
Anders Johnsen
2013/09/25 16:29:02
Done.
| |
| 63 ], | 64 ], |
| 64 },{ # else dart_io_support == 0 | 65 },{ # else dart_io_support == 0 |
| 65 'sources!' : [ | 66 'sources!' : [ |
| 66 'filter.cc', | 67 'filter.cc', |
| 67 'filter.h', | 68 'filter.h', |
| 69 'io_service.cc', | |
| 70 'io_service.h', | |
| 68 'net/nss_memio.cc', | 71 'net/nss_memio.cc', |
| 69 'net/nss_memio.h', | 72 'net/nss_memio.h', |
| 70 'secure_socket.cc', | 73 'secure_socket.cc', |
| 71 'secure_socket.h', | 74 'secure_socket.h', |
| 72 ], | 75 ], |
| 73 }], | 76 }], |
| 74 ], | 77 ], |
| 75 } | 78 } |
| OLD | NEW |