| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'handles.cc', | 179 'handles.cc', |
| 180 'handles.h', | 180 'handles.h', |
| 181 'handles_impl.h', | 181 'handles_impl.h', |
| 182 'handles_test.cc', | 182 'handles_test.cc', |
| 183 'hash_map.h', | 183 'hash_map.h', |
| 184 'hash_map_test.cc', | 184 'hash_map_test.cc', |
| 185 'heap.cc', | 185 'heap.cc', |
| 186 'heap.h', | 186 'heap.h', |
| 187 'heap_histogram.cc', | 187 'heap_histogram.cc', |
| 188 'heap_histogram.h', | 188 'heap_histogram.h', |
| 189 'heap_profiler.cc', | |
| 190 'heap_profiler.h', | |
| 191 'heap_profiler_test.cc', | |
| 192 'heap_test.cc', | 189 'heap_test.cc', |
| 193 'il_printer.cc', | 190 'il_printer.cc', |
| 194 'il_printer.h', | 191 'il_printer.h', |
| 195 'instructions.h', | 192 'instructions.h', |
| 196 'instructions_arm.cc', | 193 'instructions_arm.cc', |
| 197 'instructions_arm.h', | 194 'instructions_arm.h', |
| 198 'instructions_arm_test.cc', | 195 'instructions_arm_test.cc', |
| 199 'instructions_ia32.cc', | 196 'instructions_ia32.cc', |
| 200 'instructions_ia32.h', | 197 'instructions_ia32.h', |
| 201 'instructions_ia32_test.cc', | 198 'instructions_ia32_test.cc', |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 'visitor.h', | 380 'visitor.h', |
| 384 'vtune.cc', | 381 'vtune.cc', |
| 385 'vtune.h', | 382 'vtune.h', |
| 386 'weak_table.cc', | 383 'weak_table.cc', |
| 387 'weak_table.h', | 384 'weak_table.h', |
| 388 'zone.cc', | 385 'zone.cc', |
| 389 'zone.h', | 386 'zone.h', |
| 390 'zone_test.cc', | 387 'zone_test.cc', |
| 391 ], | 388 ], |
| 392 } | 389 } |
| OLD | NEW |