| 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 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'globals.h', | 122 'globals.h', |
| 123 'growable_array.h', | 123 'growable_array.h', |
| 124 'growable_array_test.cc', | 124 'growable_array_test.cc', |
| 125 'handles.cc', | 125 'handles.cc', |
| 126 'handles.h', | 126 'handles.h', |
| 127 'handles_impl.h', | 127 'handles_impl.h', |
| 128 'handles_test.cc', | 128 'handles_test.cc', |
| 129 'heap.cc', | 129 'heap.cc', |
| 130 'heap.h', | 130 'heap.h', |
| 131 'heap_test.cc', | 131 'heap_test.cc', |
| 132 'ic_data.h', | |
| 133 'ic_data.cc', | |
| 134 'ic_data_test.cc', | |
| 135 'instructions.h', | 132 'instructions.h', |
| 136 'instructions_ia32.cc', | 133 'instructions_ia32.cc', |
| 137 'instructions_ia32.h', | 134 'instructions_ia32.h', |
| 138 'instructions_ia32_test.cc', | 135 'instructions_ia32_test.cc', |
| 139 'instructions_x64.cc', | 136 'instructions_x64.cc', |
| 140 'instructions_x64.h', | 137 'instructions_x64.h', |
| 141 'instructions_x64_test.cc', | 138 'instructions_x64_test.cc', |
| 142 'intrinsifier.h', | 139 'intrinsifier.h', |
| 143 'intrinsifier_ia32.cc', | 140 'intrinsifier_ia32.cc', |
| 144 'intrinsifier_x64.cc', | 141 'intrinsifier_x64.cc', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 'virtual_memory_test.cc', | 248 'virtual_memory_test.cc', |
| 252 'virtual_memory_win.cc', | 249 'virtual_memory_win.cc', |
| 253 'verifier.cc', | 250 'verifier.cc', |
| 254 'verifier.h', | 251 'verifier.h', |
| 255 'visitor.h', | 252 'visitor.h', |
| 256 'zone.cc', | 253 'zone.cc', |
| 257 'zone.h', | 254 'zone.h', |
| 258 'zone_test.cc', | 255 'zone_test.cc', |
| 259 ], | 256 ], |
| 260 } | 257 } |
| OLD | NEW |