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 'eventhandler.cc', | 9 'eventhandler.cc', |
| 10 'eventhandler.h', | 10 'eventhandler.h', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 'secure_socket_boringssl.cc', | 57 'secure_socket_boringssl.cc', |
| 58 'secure_socket_boringssl.h', | 58 'secure_socket_boringssl.h', |
| 59 'secure_socket_ios.cc', | 59 'secure_socket_ios.cc', |
| 60 'secure_socket_ios.h', | 60 'secure_socket_ios.h', |
| 61 'secure_socket_macos.cc', | 61 'secure_socket_macos.cc', |
| 62 'secure_socket_macos.h', | 62 'secure_socket_macos.h', |
| 63 'secure_socket_unsupported.cc', | 63 'secure_socket_unsupported.cc', |
| 64 'socket.cc', | 64 'socket.cc', |
| 65 'socket.h', | 65 'socket.h', |
| 66 'socket_android.cc', | 66 'socket_android.cc', |
| 67 'socket_android.h', | |
| 68 'socket_fuchsia.cc', | 67 'socket_fuchsia.cc', |
| 69 'socket_fuchsia.h', | |
| 70 'socket_linux.cc', | 68 'socket_linux.cc', |
| 71 'socket_linux.h', | |
| 72 'socket_macos.cc', | 69 'socket_macos.cc', |
| 73 'socket_macos.h', | |
| 74 'socket_unsupported.cc', | |
| 75 'socket_win.cc', | 70 'socket_win.cc', |
| 76 'socket_win.h', | 71 'socket_base.cc', |
|
zra
2017/04/02 21:39:27
Alphabetize.
bkonyi
2017/04/02 22:09:28
Done.
| |
| 72 'socket_base.h', | |
| 73 'socket_base_android.cc', | |
| 74 'socket_base_android.h', | |
| 75 'socket_base_fuchsia.cc', | |
| 76 'socket_base_fuchsia.h', | |
| 77 'socket_base_linux.cc', | |
| 78 'socket_base_linux.h', | |
| 79 'socket_base_macos.cc', | |
| 80 'socket_base_macos.h', | |
| 81 'socket_base_unsupported.cc', | |
| 82 'socket_base_win.cc', | |
| 83 'socket_base_win.h', | |
| 77 'stdio.cc', | 84 'stdio.cc', |
| 78 'stdio.h', | 85 'stdio.h', |
| 79 'stdio_android.cc', | 86 'stdio_android.cc', |
| 80 'stdio_fuchsia.cc', | 87 'stdio_fuchsia.cc', |
| 81 'stdio_linux.cc', | 88 'stdio_linux.cc', |
| 82 'stdio_macos.cc', | 89 'stdio_macos.cc', |
| 83 'stdio_unsupported.cc', | 90 'stdio_unsupported.cc', |
| 84 'stdio_win.cc', | 91 'stdio_win.cc', |
| 85 ], | 92 ], |
| 86 } | 93 } |
| OLD | NEW |