| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'growable_array_test.cc', | 144 'growable_array_test.cc', |
| 145 'handles.cc', | 145 'handles.cc', |
| 146 'handles.h', | 146 'handles.h', |
| 147 'handles_impl.h', | 147 'handles_impl.h', |
| 148 'handles_test.cc', | 148 'handles_test.cc', |
| 149 'heap.cc', | 149 'heap.cc', |
| 150 'heap.h', | 150 'heap.h', |
| 151 'heap_test.cc', | 151 'heap_test.cc', |
| 152 'il_printer.cc', | 152 'il_printer.cc', |
| 153 'il_printer.h', | 153 'il_printer.h', |
| 154 'heap_profiler.cc', |
| 155 'heap_profiler.h', |
| 156 'heap_profiler_test.cc', |
| 154 'instructions.h', | 157 'instructions.h', |
| 155 'instructions_ia32.cc', | 158 'instructions_ia32.cc', |
| 156 'instructions_ia32.h', | 159 'instructions_ia32.h', |
| 157 'instructions_ia32_test.cc', | 160 'instructions_ia32_test.cc', |
| 158 'instructions_x64.cc', | 161 'instructions_x64.cc', |
| 159 'instructions_x64.h', | 162 'instructions_x64.h', |
| 160 'instructions_x64_test.cc', | 163 'instructions_x64_test.cc', |
| 161 'intermediate_language.cc', | 164 'intermediate_language.cc', |
| 162 'intermediate_language.h', | 165 'intermediate_language.h', |
| 163 'intermediate_language_ia32.cc', | 166 'intermediate_language_ia32.cc', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 'virtual_memory_test.cc', | 288 'virtual_memory_test.cc', |
| 286 'virtual_memory_win.cc', | 289 'virtual_memory_win.cc', |
| 287 'verifier.cc', | 290 'verifier.cc', |
| 288 'verifier.h', | 291 'verifier.h', |
| 289 'visitor.h', | 292 'visitor.h', |
| 290 'zone.cc', | 293 'zone.cc', |
| 291 'zone.h', | 294 'zone.h', |
| 292 'zone_test.cc', | 295 'zone_test.cc', |
| 293 ], | 296 ], |
| 294 } | 297 } |
| OLD | NEW |