| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'gc_marker.h', | 155 'gc_marker.h', |
| 156 'gc_sweeper.cc', | 156 'gc_sweeper.cc', |
| 157 'gc_sweeper.h', | 157 'gc_sweeper.h', |
| 158 'gdbjit_android.cc', | 158 'gdbjit_android.cc', |
| 159 'gdbjit_android.h', | 159 'gdbjit_android.h', |
| 160 'gdbjit_linux.cc', | 160 'gdbjit_linux.cc', |
| 161 'gdbjit_linux.h', | 161 'gdbjit_linux.h', |
| 162 'globals.h', | 162 'globals.h', |
| 163 'growable_array.h', | 163 'growable_array.h', |
| 164 'growable_array_test.cc', | 164 'growable_array_test.cc', |
| 165 'guard_field_test.cc', |
| 165 'handles.cc', | 166 'handles.cc', |
| 166 'handles.h', | 167 'handles.h', |
| 167 'handles_impl.h', | 168 'handles_impl.h', |
| 168 'handles_test.cc', | 169 'handles_test.cc', |
| 169 'hash_map.h', | 170 'hash_map.h', |
| 170 'hash_map_test.cc', | 171 'hash_map_test.cc', |
| 171 'heap.cc', | 172 'heap.cc', |
| 172 'heap.h', | 173 'heap.h', |
| 173 'heap_histogram.cc', | 174 'heap_histogram.cc', |
| 174 'heap_histogram.h', | 175 'heap_histogram.h', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 'visitor.h', | 343 'visitor.h', |
| 343 'vtune.cc', | 344 'vtune.cc', |
| 344 'vtune.h', | 345 'vtune.h', |
| 345 'weak_table.cc', | 346 'weak_table.cc', |
| 346 'weak_table.h', | 347 'weak_table.h', |
| 347 'zone.cc', | 348 'zone.cc', |
| 348 'zone.h', | 349 'zone.h', |
| 349 'zone_test.cc', | 350 'zone_test.cc', |
| 350 ], | 351 ], |
| 351 } | 352 } |
| OLD | NEW |