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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'debuginfo_macos.cc', | 103 'debuginfo_macos.cc', |
104 'debuginfo_win.cc', | 104 'debuginfo_win.cc', |
105 'double_conversion.cc', | 105 'double_conversion.cc', |
106 'double_conversion.h', | 106 'double_conversion.h', |
107 'exceptions.cc', | 107 'exceptions.cc', |
108 'exceptions.h', | 108 'exceptions.h', |
109 'exceptions_test.cc', | 109 'exceptions_test.cc', |
110 'flags.cc', | 110 'flags.cc', |
111 'flags.h', | 111 'flags.h', |
112 'flags_test.cc', | 112 'flags_test.cc', |
| 113 'flow_graph_builder.cc', |
| 114 'flow_graph_builder.h', |
113 'freelist.cc', | 115 'freelist.cc', |
114 'freelist.h', | 116 'freelist.h', |
115 'freelist_test.cc', | 117 'freelist_test.cc', |
116 'gc_marker.cc', | 118 'gc_marker.cc', |
117 'gc_marker.h', | 119 'gc_marker.h', |
118 'gc_sweeper.cc', | 120 'gc_sweeper.cc', |
119 'gc_sweeper.h', | 121 'gc_sweeper.h', |
120 'gdbjit_linux.cc', | 122 'gdbjit_linux.cc', |
121 'gdbjit_linux.h', | 123 'gdbjit_linux.h', |
122 'globals.h', | 124 'globals.h', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 'virtual_memory_test.cc', | 253 'virtual_memory_test.cc', |
252 'virtual_memory_win.cc', | 254 'virtual_memory_win.cc', |
253 'verifier.cc', | 255 'verifier.cc', |
254 'verifier.h', | 256 'verifier.h', |
255 'visitor.h', | 257 'visitor.h', |
256 'zone.cc', | 258 'zone.cc', |
257 'zone.h', | 259 'zone.h', |
258 'zone_test.cc', | 260 'zone_test.cc', |
259 ], | 261 ], |
260 } | 262 } |
OLD | NEW |