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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 'debuginfo_win.cc', | 112 'debuginfo_win.cc', |
113 'double_conversion.cc', | 113 'double_conversion.cc', |
114 'double_conversion.h', | 114 'double_conversion.h', |
115 'exceptions.cc', | 115 'exceptions.cc', |
116 'exceptions.h', | 116 'exceptions.h', |
117 'exceptions_test.cc', | 117 'exceptions_test.cc', |
118 'find_code_object_test.cc', | 118 'find_code_object_test.cc', |
119 'flags.cc', | 119 'flags.cc', |
120 'flags.h', | 120 'flags.h', |
121 'flags_test.cc', | 121 'flags_test.cc', |
| 122 'flow_graph_allocator.cc', |
| 123 'flow_graph_allocator.h', |
122 'flow_graph_builder.cc', | 124 'flow_graph_builder.cc', |
123 'flow_graph_builder.h', | 125 'flow_graph_builder.h', |
124 'flow_graph_compiler.cc', | 126 'flow_graph_compiler.cc', |
125 'flow_graph_compiler.h', | 127 'flow_graph_compiler.h', |
126 'flow_graph_compiler_arm.cc', | 128 'flow_graph_compiler_arm.cc', |
127 'flow_graph_compiler_arm.h', | 129 'flow_graph_compiler_arm.h', |
128 'flow_graph_compiler_ia32.cc', | 130 'flow_graph_compiler_ia32.cc', |
129 'flow_graph_compiler_ia32.h', | 131 'flow_graph_compiler_ia32.h', |
130 'flow_graph_compiler_x64.cc', | 132 'flow_graph_compiler_x64.cc', |
131 'flow_graph_compiler_x64.h', | 133 'flow_graph_compiler_x64.h', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 'virtual_memory_test.cc', | 291 'virtual_memory_test.cc', |
290 'virtual_memory_win.cc', | 292 'virtual_memory_win.cc', |
291 'verifier.cc', | 293 'verifier.cc', |
292 'verifier.h', | 294 'verifier.h', |
293 'visitor.h', | 295 'visitor.h', |
294 'zone.cc', | 296 'zone.cc', |
295 'zone.h', | 297 'zone.h', |
296 'zone_test.cc', | 298 'zone_test.cc', |
297 ], | 299 ], |
298 } | 300 } |
OLD | NEW |