| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 'gdbjit_linux.h', | 145 'gdbjit_linux.h', |
| 146 'globals.h', | 146 'globals.h', |
| 147 'growable_array.h', | 147 'growable_array.h', |
| 148 'growable_array_test.cc', | 148 'growable_array_test.cc', |
| 149 'handles.cc', | 149 'handles.cc', |
| 150 'handles.h', | 150 'handles.h', |
| 151 'handles_impl.h', | 151 'handles_impl.h', |
| 152 'handles_test.cc', | 152 'handles_test.cc', |
| 153 'heap.cc', | 153 'heap.cc', |
| 154 'heap.h', | 154 'heap.h', |
| 155 'heap_test.cc', | |
| 156 'heap_profiler.cc', | 155 'heap_profiler.cc', |
| 157 'heap_profiler.h', | 156 'heap_profiler.h', |
| 158 'heap_profiler_test.cc', | 157 'heap_profiler_test.cc', |
| 158 'heap_test.cc', |
| 159 'il_printer.cc', | 159 'il_printer.cc', |
| 160 'il_printer.h', | 160 'il_printer.h', |
| 161 'instructions.h', | 161 'instructions.h', |
| 162 'instructions_ia32.cc', | 162 'instructions_ia32.cc', |
| 163 'instructions_ia32.h', | 163 'instructions_ia32.h', |
| 164 'instructions_ia32_test.cc', | 164 'instructions_ia32_test.cc', |
| 165 'instructions_x64.cc', | 165 'instructions_x64.cc', |
| 166 'instructions_x64.h', | 166 'instructions_x64.h', |
| 167 'instructions_x64_test.cc', | 167 'instructions_x64_test.cc', |
| 168 'intermediate_language.cc', | 168 'intermediate_language.cc', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 'virtual_memory_test.cc', | 292 'virtual_memory_test.cc', |
| 293 'virtual_memory_win.cc', | 293 'virtual_memory_win.cc', |
| 294 'verifier.cc', | 294 'verifier.cc', |
| 295 'verifier.h', | 295 'verifier.h', |
| 296 'visitor.h', | 296 'visitor.h', |
| 297 'zone.cc', | 297 'zone.cc', |
| 298 'zone.h', | 298 'zone.h', |
| 299 'zone_test.cc', | 299 'zone_test.cc', |
| 300 ], | 300 ], |
| 301 } | 301 } |
| OLD | NEW |