OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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', |
11 'allocation_test.cc', | 11 'allocation_test.cc', |
12 'assembler.cc', | 12 'assembler.cc', |
13 'assembler.h', | 13 'assembler.h', |
14 'assembler_arm.h', | 14 'assembler_arm.h', |
15 'assembler_ia32.cc', | 15 'assembler_ia32.cc', |
16 'assembler_ia32.h', | 16 'assembler_ia32.h', |
17 'assembler_ia32_test.cc', | 17 'assembler_ia32_test.cc', |
18 'assembler_macros.h', | 18 'assembler_macros.h', |
19 'assembler_macros_ia32.cc', | 19 'assembler_macros_ia32.cc', |
20 'assembler_macros_ia32.h', | 20 'assembler_macros_ia32.h', |
| 21 'assembler_macros_x64.cc', |
| 22 'assembler_macros_x64.h', |
21 'assembler_x64.cc', | 23 'assembler_x64.cc', |
22 'assembler_x64.h', | 24 'assembler_x64.h', |
23 'assembler_x64_test.cc', | 25 'assembler_x64_test.cc', |
24 'assert.cc', | 26 'assert.cc', |
25 'assert.h', | 27 'assert.h', |
26 'assert_test.cc', | 28 'assert_test.cc', |
27 'ast.cc', | 29 'ast.cc', |
28 'ast.h', | 30 'ast.h', |
29 'ast_test.cc', | 31 'ast_test.cc', |
30 'ast_printer.h', | 32 'ast_printer.h', |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 'virtual_memory_test.cc', | 246 'virtual_memory_test.cc', |
245 'virtual_memory_win.cc', | 247 'virtual_memory_win.cc', |
246 'verifier.cc', | 248 'verifier.cc', |
247 'verifier.h', | 249 'verifier.h', |
248 'visitor.h', | 250 'visitor.h', |
249 'zone.cc', | 251 'zone.cc', |
250 'zone.h', | 252 'zone.h', |
251 'zone_test.cc', | 253 'zone_test.cc', |
252 ], | 254 ], |
253 } | 255 } |
OLD | NEW |