| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'bitfield.h', | 43 'bitfield.h', |
| 44 'bitfield_test.cc', | 44 'bitfield_test.cc', |
| 45 'bitmap.cc', | 45 'bitmap.cc', |
| 46 'bitmap.h', | 46 'bitmap.h', |
| 47 'bitmap_test.cc', | 47 'bitmap_test.cc', |
| 48 'boolfield.h', | 48 'boolfield.h', |
| 49 'boolfield_test.cc', | 49 'boolfield_test.cc', |
| 50 'bootstrap.h', | 50 'bootstrap.h', |
| 51 'bootstrap_natives.cc', | 51 'bootstrap_natives.cc', |
| 52 'bootstrap_natives.h', | 52 'bootstrap_natives.h', |
| 53 'cha.cc', |
| 54 'cha.h', |
| 55 'cha_test.cc', |
| 53 'class_finalizer.h', | 56 'class_finalizer.h', |
| 54 'class_finalizer.cc', | 57 'class_finalizer.cc', |
| 55 'class_finalizer_test.cc', | 58 'class_finalizer_test.cc', |
| 56 'class_table.cc', | 59 'class_table.cc', |
| 57 'class_table.h', | 60 'class_table.h', |
| 58 'class_table_test.cc', | |
| 59 'code_descriptors.cc', | 61 'code_descriptors.cc', |
| 60 'code_descriptors.h', | 62 'code_descriptors.h', |
| 61 'code_descriptors_test.cc', | 63 'code_descriptors_test.cc', |
| 62 'code_generator.cc', | 64 'code_generator.cc', |
| 63 'code_generator.h', | 65 'code_generator.h', |
| 64 'code_generator_test.cc', | 66 'code_generator_test.cc', |
| 65 'code_patcher.h', | 67 'code_patcher.h', |
| 66 'code_patcher_arm.cc', | 68 'code_patcher_arm.cc', |
| 67 'code_patcher_ia32.cc', | 69 'code_patcher_ia32.cc', |
| 68 'code_patcher_ia32_test.cc', | 70 'code_patcher_ia32_test.cc', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 'virtual_memory_test.cc', | 301 'virtual_memory_test.cc', |
| 300 'virtual_memory_win.cc', | 302 'virtual_memory_win.cc', |
| 301 'verifier.cc', | 303 'verifier.cc', |
| 302 'verifier.h', | 304 'verifier.h', |
| 303 'visitor.h', | 305 'visitor.h', |
| 304 'zone.cc', | 306 'zone.cc', |
| 305 'zone.h', | 307 'zone.h', |
| 306 'zone_test.cc', | 308 'zone_test.cc', |
| 307 ], | 309 ], |
| 308 } | 310 } |
| OLD | NEW |