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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'flags_test.cc', | 121 'flags_test.cc', |
122 'flow_graph_builder.cc', | 122 'flow_graph_builder.cc', |
123 'flow_graph_builder.h', | 123 'flow_graph_builder.h', |
124 'flow_graph_compiler.h', | 124 'flow_graph_compiler.h', |
125 'flow_graph_compiler_arm.cc', | 125 'flow_graph_compiler_arm.cc', |
126 'flow_graph_compiler_arm.h', | 126 'flow_graph_compiler_arm.h', |
127 'flow_graph_compiler_ia32.cc', | 127 'flow_graph_compiler_ia32.cc', |
128 'flow_graph_compiler_ia32.h', | 128 'flow_graph_compiler_ia32.h', |
129 'flow_graph_compiler_x64.cc', | 129 'flow_graph_compiler_x64.cc', |
130 'flow_graph_compiler_x64.h', | 130 'flow_graph_compiler_x64.h', |
| 131 'flow_graph_optimizer.cc', |
| 132 'flow_graph_optimizer.h', |
131 'freelist.cc', | 133 'freelist.cc', |
132 'freelist.h', | 134 'freelist.h', |
133 'freelist_test.cc', | 135 'freelist_test.cc', |
134 'gc_marker.cc', | 136 'gc_marker.cc', |
135 'gc_marker.h', | 137 'gc_marker.h', |
136 'gc_sweeper.cc', | 138 'gc_sweeper.cc', |
137 'gc_sweeper.h', | 139 'gc_sweeper.h', |
138 'gdbjit_linux.cc', | 140 'gdbjit_linux.cc', |
139 'gdbjit_linux.h', | 141 'gdbjit_linux.h', |
140 'globals.h', | 142 'globals.h', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 'virtual_memory_test.cc', | 285 'virtual_memory_test.cc', |
284 'virtual_memory_win.cc', | 286 'virtual_memory_win.cc', |
285 'verifier.cc', | 287 'verifier.cc', |
286 'verifier.h', | 288 'verifier.h', |
287 'visitor.h', | 289 'visitor.h', |
288 'zone.cc', | 290 'zone.cc', |
289 'zone.h', | 291 'zone.h', |
290 'zone_test.cc', | 292 'zone_test.cc', |
291 ], | 293 ], |
292 } | 294 } |
OLD | NEW |