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 17 matching lines...) Expand all Loading... |
28 'ast.h', | 28 'ast.h', |
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 'bigint_operations.cc', | 33 'bigint_operations.cc', |
34 'bigint_operations.h', | 34 'bigint_operations.h', |
35 'bigint_operations_test.cc', | 35 'bigint_operations_test.cc', |
36 'bitfield.h', | 36 'bitfield.h', |
37 'bitfield_test.cc', | 37 'bitfield_test.cc', |
| 38 'bitmap.cc', |
| 39 'bitmap.h', |
| 40 'bitmap_test.cc', |
38 'boolfield.h', | 41 'boolfield.h', |
39 'boolfield_test.cc', | 42 'boolfield_test.cc', |
40 'bootstrap.h', | 43 'bootstrap.h', |
41 'bootstrap_natives.h', | 44 'bootstrap_natives.h', |
42 'bootstrap_natives.cc', | 45 'bootstrap_natives.cc', |
43 'class_finalizer.h', | 46 'class_finalizer.h', |
44 'class_finalizer.cc', | 47 'class_finalizer.cc', |
45 'class_finalizer_test.cc', | 48 'class_finalizer_test.cc', |
46 'code_generator.cc', | 49 'code_generator.cc', |
47 'code_generator.h', | 50 'code_generator.h', |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 'virtual_memory_test.cc', | 265 'virtual_memory_test.cc', |
263 'virtual_memory_win.cc', | 266 'virtual_memory_win.cc', |
264 'verifier.cc', | 267 'verifier.cc', |
265 'verifier.h', | 268 'verifier.h', |
266 'visitor.h', | 269 'visitor.h', |
267 'zone.cc', | 270 'zone.cc', |
268 'zone.h', | 271 'zone.h', |
269 'zone_test.cc', | 272 'zone_test.cc', |
270 ], | 273 ], |
271 } | 274 } |
OLD | NEW |