| 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 18 matching lines...) Expand all Loading... |
| 29 'ast_test.cc', | 29 'ast_test.cc', |
| 30 'ast_printer.h', | 30 'ast_printer.h', |
| 31 'ast_printer.cc', | 31 'ast_printer.cc', |
| 32 'ast_printer_test.cc', | 32 'ast_printer_test.cc', |
| 33 'base_isolate.h', | 33 'base_isolate.h', |
| 34 'benchmark_test.cc', | 34 'benchmark_test.cc', |
| 35 'benchmark_test.h', | 35 'benchmark_test.h', |
| 36 'bigint_operations.cc', | 36 'bigint_operations.cc', |
| 37 'bigint_operations.h', | 37 'bigint_operations.h', |
| 38 'bigint_operations_test.cc', | 38 'bigint_operations_test.cc', |
| 39 'bit_vector.cc', |
| 40 'bit_vector.h', |
| 39 'bitfield.h', | 41 'bitfield.h', |
| 40 'bitfield_test.cc', | 42 'bitfield_test.cc', |
| 41 'bitmap.cc', | 43 'bitmap.cc', |
| 42 'bitmap.h', | 44 'bitmap.h', |
| 43 'bitmap_test.cc', | 45 'bitmap_test.cc', |
| 44 'boolfield.h', | 46 'boolfield.h', |
| 45 'boolfield_test.cc', | 47 'boolfield_test.cc', |
| 46 'bootstrap.h', | 48 'bootstrap.h', |
| 49 'bootstrap_natives.cc', |
| 47 'bootstrap_natives.h', | 50 'bootstrap_natives.h', |
| 48 'bootstrap_natives.cc', | |
| 49 'class_finalizer.h', | 51 'class_finalizer.h', |
| 50 'class_finalizer.cc', | 52 'class_finalizer.cc', |
| 51 'class_finalizer_test.cc', | 53 'class_finalizer_test.cc', |
| 52 'class_table.cc', | 54 'class_table.cc', |
| 53 'class_table.h', | 55 'class_table.h', |
| 54 'code_descriptors.cc', | 56 'code_descriptors.cc', |
| 55 'code_descriptors.h', | 57 'code_descriptors.h', |
| 56 'code_descriptors_test.cc', | 58 'code_descriptors_test.cc', |
| 57 'code_generator.cc', | 59 'code_generator.cc', |
| 58 'code_generator.h', | 60 'code_generator.h', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 'virtual_memory_test.cc', | 276 'virtual_memory_test.cc', |
| 275 'virtual_memory_win.cc', | 277 'virtual_memory_win.cc', |
| 276 'verifier.cc', | 278 'verifier.cc', |
| 277 'verifier.h', | 279 'verifier.h', |
| 278 'visitor.h', | 280 'visitor.h', |
| 279 'zone.cc', | 281 'zone.cc', |
| 280 'zone.h', | 282 'zone.h', |
| 281 'zone_test.cc', | 283 'zone_test.cc', |
| 282 ], | 284 ], |
| 283 } | 285 } |
| OLD | NEW |