| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 'gc_marker.h', | 157 'gc_marker.h', |
| 158 'gc_sweeper.cc', | 158 'gc_sweeper.cc', |
| 159 'gc_sweeper.h', | 159 'gc_sweeper.h', |
| 160 'gdbjit_android.cc', | 160 'gdbjit_android.cc', |
| 161 'gdbjit_android.h', | 161 'gdbjit_android.h', |
| 162 'gdbjit_linux.cc', | 162 'gdbjit_linux.cc', |
| 163 'gdbjit_linux.h', | 163 'gdbjit_linux.h', |
| 164 'globals.h', | 164 'globals.h', |
| 165 'growable_array.h', | 165 'growable_array.h', |
| 166 'growable_array_test.cc', | 166 'growable_array_test.cc', |
| 167 'guard_field_test.cc', |
| 167 'handles.cc', | 168 'handles.cc', |
| 168 'handles.h', | 169 'handles.h', |
| 169 'handles_impl.h', | 170 'handles_impl.h', |
| 170 'handles_test.cc', | 171 'handles_test.cc', |
| 171 'hash_map.h', | 172 'hash_map.h', |
| 172 'hash_map_test.cc', | 173 'hash_map_test.cc', |
| 173 'heap.cc', | 174 'heap.cc', |
| 174 'heap.h', | 175 'heap.h', |
| 175 'heap_histogram.cc', | 176 'heap_histogram.cc', |
| 176 'heap_histogram.h', | 177 'heap_histogram.h', |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 'visitor.h', | 345 'visitor.h', |
| 345 'vtune.cc', | 346 'vtune.cc', |
| 346 'vtune.h', | 347 'vtune.h', |
| 347 'weak_table.cc', | 348 'weak_table.cc', |
| 348 'weak_table.h', | 349 'weak_table.h', |
| 349 'zone.cc', | 350 'zone.cc', |
| 350 'zone.h', | 351 'zone.h', |
| 351 'zone_test.cc', | 352 'zone_test.cc', |
| 352 ], | 353 ], |
| 353 } | 354 } |
| OLD | NEW |