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