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', |
(...skipping 29 matching lines...) Expand all Loading... |
40 'bitfield_test.cc', | 40 'bitfield_test.cc', |
41 'boolfield.h', | 41 'boolfield.h', |
42 'boolfield_test.cc', | 42 'boolfield_test.cc', |
43 'bootstrap.h', | 43 'bootstrap.h', |
44 'bootstrap_natives.h', | 44 'bootstrap_natives.h', |
45 'bootstrap_natives.cc', | 45 'bootstrap_natives.cc', |
46 'c99_support_win.h', | 46 'c99_support_win.h', |
47 'class_finalizer.h', | 47 'class_finalizer.h', |
48 'class_finalizer.cc', | 48 'class_finalizer.cc', |
49 'class_finalizer_test.cc', | 49 'class_finalizer_test.cc', |
| 50 'code_generator.cc', |
50 'code_generator.h', | 51 'code_generator.h', |
51 'code_generator.cc', | 52 'code_generator_arm.h', |
| 53 'code_generator_ia32.cc', |
52 'code_generator_ia32.h', | 54 'code_generator_ia32.h', |
53 'code_generator_ia32.cc', | |
54 'code_generator_ia32_test.cc', | 55 'code_generator_ia32_test.cc', |
55 'code_generator_arm.h', | 56 'code_generator_x64.cc', |
56 'code_generator_x64.h', | 57 'code_generator_x64.h', |
| 58 'code_generator_x64_test.cc', |
57 'code_index_table.cc', | 59 'code_index_table.cc', |
58 'code_index_table.h', | 60 'code_index_table.h', |
59 'code_index_table_test.cc', | 61 'code_index_table_test.cc', |
60 'code_patcher.h', | 62 'code_patcher.h', |
| 63 'code_patcher_arm.cc', |
61 'code_patcher_ia32.cc', | 64 'code_patcher_ia32.cc', |
62 'code_patcher_ia32_test.cc', | 65 'code_patcher_ia32_test.cc', |
63 'code_patcher_arm.cc', | |
64 'code_patcher_x64.cc', | 66 'code_patcher_x64.cc', |
| 67 'code_patcher_x64_test.cc', |
65 'compiler.h', | 68 'compiler.h', |
66 'compiler.cc', | 69 'compiler.cc', |
67 'compiler_stats.h', | 70 'compiler_stats.h', |
68 'compiler_stats.cc', | 71 'compiler_stats.cc', |
69 'compiler_test.cc', | 72 'compiler_test.cc', |
70 'constants_ia32.h', | 73 'constants_ia32.h', |
71 'constants_x64.h', | 74 'constants_x64.h', |
72 'constants_arm.h', | 75 'constants_arm.h', |
73 'cpu.h', | 76 'cpu.h', |
74 'cpu_ia32.cc', | 77 'cpu_ia32.cc', |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 'virtual_memory_test.cc', | 261 'virtual_memory_test.cc', |
259 'virtual_memory_win.cc', | 262 'virtual_memory_win.cc', |
260 'verifier.cc', | 263 'verifier.cc', |
261 'verifier.h', | 264 'verifier.h', |
262 'visitor.h', | 265 'visitor.h', |
263 'zone.cc', | 266 'zone.cc', |
264 'zone.h', | 267 'zone.h', |
265 'zone_test.cc', | 268 'zone_test.cc', |
266 ], | 269 ], |
267 } | 270 } |
OLD | NEW |