| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'class_finalizer.h', | 53 'class_finalizer.h', |
| 54 'class_finalizer.cc', | 54 'class_finalizer.cc', |
| 55 'class_finalizer_test.cc', | 55 'class_finalizer_test.cc', |
| 56 'class_table.cc', | 56 'class_table.cc', |
| 57 'class_table.h', | 57 'class_table.h', |
| 58 'class_table_test.cc', |
| 58 'code_descriptors.cc', | 59 'code_descriptors.cc', |
| 59 'code_descriptors.h', | 60 'code_descriptors.h', |
| 60 'code_descriptors_test.cc', | 61 'code_descriptors_test.cc', |
| 61 'code_generator.cc', | 62 'code_generator.cc', |
| 62 'code_generator.h', | 63 'code_generator.h', |
| 63 'code_generator_test.cc', | 64 'code_generator_test.cc', |
| 64 'code_patcher.h', | 65 'code_patcher.h', |
| 65 'code_patcher_arm.cc', | 66 'code_patcher_arm.cc', |
| 66 'code_patcher_ia32.cc', | 67 'code_patcher_ia32.cc', |
| 67 'code_patcher_ia32_test.cc', | 68 'code_patcher_ia32_test.cc', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'virtual_memory_test.cc', | 299 'virtual_memory_test.cc', |
| 299 'virtual_memory_win.cc', | 300 'virtual_memory_win.cc', |
| 300 'verifier.cc', | 301 'verifier.cc', |
| 301 'verifier.h', | 302 'verifier.h', |
| 302 'visitor.h', | 303 'visitor.h', |
| 303 'zone.cc', | 304 'zone.cc', |
| 304 'zone.h', | 305 'zone.h', |
| 305 'zone_test.cc', | 306 'zone_test.cc', |
| 306 ], | 307 ], |
| 307 } | 308 } |
| OLD | NEW |