| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'bitmap.h', | 42 'bitmap.h', |
| 43 'bitmap_test.cc', | 43 'bitmap_test.cc', |
| 44 'boolfield.h', | 44 'boolfield.h', |
| 45 'boolfield_test.cc', | 45 'boolfield_test.cc', |
| 46 'bootstrap.h', | 46 'bootstrap.h', |
| 47 'bootstrap_natives.h', | 47 'bootstrap_natives.h', |
| 48 'bootstrap_natives.cc', | 48 'bootstrap_natives.cc', |
| 49 'class_finalizer.h', | 49 'class_finalizer.h', |
| 50 'class_finalizer.cc', | 50 'class_finalizer.cc', |
| 51 'class_finalizer_test.cc', | 51 'class_finalizer_test.cc', |
| 52 'class_table.cc', |
| 53 'class_table.h', |
| 52 'code_descriptors.cc', | 54 'code_descriptors.cc', |
| 53 'code_descriptors.h', | 55 'code_descriptors.h', |
| 54 'code_descriptors_test.cc', | 56 'code_descriptors_test.cc', |
| 55 'code_generator.cc', | 57 'code_generator.cc', |
| 56 'code_generator.h', | 58 'code_generator.h', |
| 57 'code_generator_test.cc', | 59 'code_generator_test.cc', |
| 58 'code_generator_arm.h', | 60 'code_generator_arm.h', |
| 59 'code_generator_ia32.cc', | 61 'code_generator_ia32.cc', |
| 60 'code_generator_ia32.h', | 62 'code_generator_ia32.h', |
| 61 'code_generator_x64.cc', | 63 'code_generator_x64.cc', |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'virtual_memory_test.cc', | 277 'virtual_memory_test.cc', |
| 276 'virtual_memory_win.cc', | 278 'virtual_memory_win.cc', |
| 277 'verifier.cc', | 279 'verifier.cc', |
| 278 'verifier.h', | 280 'verifier.h', |
| 279 'visitor.h', | 281 'visitor.h', |
| 280 'zone.cc', | 282 'zone.cc', |
| 281 'zone.h', | 283 'zone.h', |
| 282 'zone_test.cc', | 284 'zone_test.cc', |
| 283 ], | 285 ], |
| 284 } | 286 } |
| OLD | NEW |