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 all C++ sources for the dart:_builtin library and | 5 # This file contains all C++ sources for the dart:_builtin library and |
6 # some of the C++ sources for the dart:io library. The rest are in | 6 # some of the C++ sources for the dart:io library. The rest are in |
7 # io_impl_sources.gypi. | 7 # io_impl_sources.gypi. |
8 { | 8 { |
9 'sources': [ | 9 'sources': [ |
10 'crypto.cc', | 10 'crypto.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
30 'eventhandler_test.cc', | 30 'eventhandler_test.cc', |
31 'extensions.h', | 31 'extensions.h', |
32 'extensions.cc', | 32 'extensions.cc', |
33 'extensions_android.cc', | 33 'extensions_android.cc', |
34 'extensions_fuchsia.cc', | 34 'extensions_fuchsia.cc', |
35 'extensions_linux.cc', | 35 'extensions_linux.cc', |
36 'extensions_macos.cc', | 36 'extensions_macos.cc', |
37 'extensions_win.cc', | 37 'extensions_win.cc', |
38 'fdutils.h', | 38 'fdutils.h', |
39 'fdutils_android.cc', | 39 'fdutils_android.cc', |
| 40 'fdutils_fuchsia.cc', |
40 'fdutils_linux.cc', | 41 'fdutils_linux.cc', |
41 'fdutils_macos.cc', | 42 'fdutils_macos.cc', |
42 'file.cc', | 43 'file.cc', |
43 'file.h', | 44 'file.h', |
44 'file_android.cc', | 45 'file_android.cc', |
45 'file_fuchsia.cc', | 46 'file_fuchsia.cc', |
46 'file_linux.cc', | 47 'file_linux.cc', |
47 'file_macos.cc', | 48 'file_macos.cc', |
48 'file_support.cc', | 49 'file_support.cc', |
49 'file_unsupported.cc', | 50 'file_unsupported.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
69 'thread_win.h', | 70 'thread_win.h', |
70 'utils.h', | 71 'utils.h', |
71 'utils_android.cc', | 72 'utils_android.cc', |
72 'utils_fuchsia.cc', | 73 'utils_fuchsia.cc', |
73 'utils_linux.cc', | 74 'utils_linux.cc', |
74 'utils_macos.cc', | 75 'utils_macos.cc', |
75 'utils_win.cc', | 76 'utils_win.cc', |
76 'utils_win.h', | 77 'utils_win.h', |
77 ], | 78 ], |
78 } | 79 } |
OLD | NEW |