OLD | NEW |
1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 sources (vm and tests) for the dart virtual machine. | 5 # This file contains all sources (vm and tests) for the dart virtual machine. |
6 # Unit test files need to have a '_test' suffix appended to the name. | 6 # Unit test files need to have a '_test' suffix appended to the name. |
7 { | 7 { |
8 'sources': [ | 8 'sources': [ |
9 'allocation.cc', | 9 'allocation.cc', |
10 'allocation.h', | 10 'allocation.h', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 'cpuinfo_macos.cc', | 129 'cpuinfo_macos.cc', |
130 'cpuinfo_test.cc', | 130 'cpuinfo_test.cc', |
131 'cpuinfo_win.cc', | 131 'cpuinfo_win.cc', |
132 'custom_isolate_test.cc', | 132 'custom_isolate_test.cc', |
133 'dart.cc', | 133 'dart.cc', |
134 'dart.h', | 134 'dart.h', |
135 'dart_api_impl.h', | 135 'dart_api_impl.h', |
136 'dart_api_impl_test.cc', | 136 'dart_api_impl_test.cc', |
137 'dart_api_message.cc', | 137 'dart_api_message.cc', |
138 'dart_api_message.h', | 138 'dart_api_message.h', |
139 'dart_api_state.cc', | |
140 'dart_api_state.h', | 139 'dart_api_state.h', |
141 'dart_entry.cc', | 140 'dart_entry.cc', |
142 'dart_entry.h', | 141 'dart_entry.h', |
143 'dart_entry_test.cc', | 142 'dart_entry_test.cc', |
144 'datastream.h', | 143 'datastream.h', |
145 'debugger.cc', | 144 'debugger.cc', |
146 'debugger_test.cc', | 145 'debugger_test.cc', |
147 'debugger.h', | 146 'debugger.h', |
148 'debugger_api_impl_test.cc', | 147 'debugger_api_impl_test.cc', |
149 'debugger_arm.cc', | 148 'debugger_arm.cc', |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 'visitor.h', | 525 'visitor.h', |
527 'weak_code.cc', | 526 'weak_code.cc', |
528 'weak_code.h', | 527 'weak_code.h', |
529 'weak_table.cc', | 528 'weak_table.cc', |
530 'weak_table.h', | 529 'weak_table.h', |
531 'zone.cc', | 530 'zone.cc', |
532 'zone.h', | 531 'zone.h', |
533 'zone_test.cc', | 532 'zone_test.cc', |
534 ], | 533 ], |
535 } | 534 } |
OLD | NEW |