OLD | NEW |
1 # Copyright (c) 2011, 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 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', |
11 'allocation_test.cc', | 11 'allocation_test.cc', |
(...skipping 24 matching lines...) Expand all Loading... |
36 'bigint_operations.h', | 36 'bigint_operations.h', |
37 'bigint_operations_test.cc', | 37 'bigint_operations_test.cc', |
38 'bigint_store.h', | 38 'bigint_store.h', |
39 'bitfield.h', | 39 'bitfield.h', |
40 'bitfield_test.cc', | 40 'bitfield_test.cc', |
41 'boolfield.h', | 41 'boolfield.h', |
42 'boolfield_test.cc', | 42 'boolfield_test.cc', |
43 'bootstrap.h', | 43 'bootstrap.h', |
44 'bootstrap_natives.h', | 44 'bootstrap_natives.h', |
45 'bootstrap_natives.cc', | 45 'bootstrap_natives.cc', |
46 'c99_support_win.h', | |
47 'class_finalizer.h', | 46 'class_finalizer.h', |
48 'class_finalizer.cc', | 47 'class_finalizer.cc', |
49 'class_finalizer_test.cc', | 48 'class_finalizer_test.cc', |
50 'code_generator.cc', | 49 'code_generator.cc', |
51 'code_generator.h', | 50 'code_generator.h', |
52 'code_generator_arm.h', | 51 'code_generator_arm.h', |
53 'code_generator_ia32.cc', | 52 'code_generator_ia32.cc', |
54 'code_generator_ia32.h', | 53 'code_generator_ia32.h', |
55 'code_generator_ia32_test.cc', | 54 'code_generator_ia32_test.cc', |
56 'code_generator_x64.cc', | 55 'code_generator_x64.cc', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 'handles.cc', | 126 'handles.cc', |
128 'handles.h', | 127 'handles.h', |
129 'handles_impl.h', | 128 'handles_impl.h', |
130 'handles_test.cc', | 129 'handles_test.cc', |
131 'heap.cc', | 130 'heap.cc', |
132 'heap.h', | 131 'heap.h', |
133 'heap_test.cc', | 132 'heap_test.cc', |
134 'ic_data.h', | 133 'ic_data.h', |
135 'ic_data.cc', | 134 'ic_data.cc', |
136 'ic_data_test.cc', | 135 'ic_data_test.cc', |
137 'inttypes_support_win.h', | |
138 'instructions.h', | 136 'instructions.h', |
139 'instructions_ia32.cc', | 137 'instructions_ia32.cc', |
140 'instructions_ia32.h', | 138 'instructions_ia32.h', |
141 'instructions_ia32_test.cc', | 139 'instructions_ia32_test.cc', |
142 'instructions_x64.cc', | 140 'instructions_x64.cc', |
143 'instructions_x64.h', | 141 'instructions_x64.h', |
144 'instructions_x64_test.cc', | 142 'instructions_x64_test.cc', |
145 'intrinsifier.h', | 143 'intrinsifier.h', |
146 'intrinsifier_ia32.cc', | 144 'intrinsifier_ia32.cc', |
147 'intrinsifier_x64.cc', | 145 'intrinsifier_x64.cc', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 'virtual_memory_test.cc', | 264 'virtual_memory_test.cc', |
267 'virtual_memory_win.cc', | 265 'virtual_memory_win.cc', |
268 'verifier.cc', | 266 'verifier.cc', |
269 'verifier.h', | 267 'verifier.h', |
270 'visitor.h', | 268 'visitor.h', |
271 'zone.cc', | 269 'zone.cc', |
272 'zone.h', | 270 'zone.h', |
273 'zone_test.cc', | 271 'zone_test.cc', |
274 ], | 272 ], |
275 } | 273 } |
OLD | NEW |