| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'gdbjit_android.h', | 146 'gdbjit_android.h', |
| 147 'gdbjit_linux.cc', | 147 'gdbjit_linux.cc', |
| 148 'gdbjit_linux.h', | 148 'gdbjit_linux.h', |
| 149 'globals.h', | 149 'globals.h', |
| 150 'growable_array.h', | 150 'growable_array.h', |
| 151 'growable_array_test.cc', | 151 'growable_array_test.cc', |
| 152 'handles.cc', | 152 'handles.cc', |
| 153 'handles.h', | 153 'handles.h', |
| 154 'handles_impl.h', | 154 'handles_impl.h', |
| 155 'handles_test.cc', | 155 'handles_test.cc', |
| 156 'hash_map.h', |
| 157 'hash_map_test.cc', |
| 156 'hash_set.h', | 158 'hash_set.h', |
| 157 'heap.cc', | 159 'heap.cc', |
| 158 'heap.h', | 160 'heap.h', |
| 159 'heap_profiler.cc', | 161 'heap_profiler.cc', |
| 160 'heap_profiler.h', | 162 'heap_profiler.h', |
| 161 'heap_profiler_test.cc', | 163 'heap_profiler_test.cc', |
| 162 'heap_test.cc', | 164 'heap_test.cc', |
| 163 'il_printer.cc', | 165 'il_printer.cc', |
| 164 'il_printer.h', | 166 'il_printer.h', |
| 165 'instructions.h', | 167 'instructions.h', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 'virtual_memory_test.cc', | 298 'virtual_memory_test.cc', |
| 297 'virtual_memory_win.cc', | 299 'virtual_memory_win.cc', |
| 298 'verifier.cc', | 300 'verifier.cc', |
| 299 'verifier.h', | 301 'verifier.h', |
| 300 'visitor.h', | 302 'visitor.h', |
| 301 'zone.cc', | 303 'zone.cc', |
| 302 'zone.h', | 304 'zone.h', |
| 303 'zone_test.cc', | 305 'zone_test.cc', |
| 304 ], | 306 ], |
| 305 } | 307 } |
| OLD | NEW |