| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'growable_array_test.cc', | 185 'growable_array_test.cc', |
| 186 'guard_field_test.cc', | 186 'guard_field_test.cc', |
| 187 'handles.cc', | 187 'handles.cc', |
| 188 'handles.h', | 188 'handles.h', |
| 189 'handles_impl.h', | 189 'handles_impl.h', |
| 190 'handles_test.cc', | 190 'handles_test.cc', |
| 191 'hash_map.h', | 191 'hash_map.h', |
| 192 'hash_map_test.cc', | 192 'hash_map_test.cc', |
| 193 'heap.cc', | 193 'heap.cc', |
| 194 'heap.h', | 194 'heap.h', |
| 195 'heap_histogram.cc', | |
| 196 'heap_histogram.h', | |
| 197 'heap_test.cc', | 195 'heap_test.cc', |
| 198 'il_printer.cc', | 196 'il_printer.cc', |
| 199 'il_printer.h', | 197 'il_printer.h', |
| 200 'instructions.h', | 198 'instructions.h', |
| 201 'instructions_arm.cc', | 199 'instructions_arm.cc', |
| 202 'instructions_arm.h', | 200 'instructions_arm.h', |
| 203 'instructions_arm_test.cc', | 201 'instructions_arm_test.cc', |
| 204 'instructions_ia32.cc', | 202 'instructions_ia32.cc', |
| 205 'instructions_ia32.h', | 203 'instructions_ia32.h', |
| 206 'instructions_ia32_test.cc', | 204 'instructions_ia32_test.cc', |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'visitor.h', | 388 'visitor.h', |
| 391 'vtune.cc', | 389 'vtune.cc', |
| 392 'vtune.h', | 390 'vtune.h', |
| 393 'weak_table.cc', | 391 'weak_table.cc', |
| 394 'weak_table.h', | 392 'weak_table.h', |
| 395 'zone.cc', | 393 'zone.cc', |
| 396 'zone.h', | 394 'zone.h', |
| 397 'zone_test.cc', | 395 'zone_test.cc', |
| 398 ], | 396 ], |
| 399 } | 397 } |
| OLD | NEW |