| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 113 'flow_graph_builder.cc', |
| 114 'flow_graph_builder.h', | 114 'flow_graph_builder.h', |
| 115 'flow_graph_compiler.h', | 115 'flow_graph_compiler.h', |
| 116 'flow_graph_compiler_arm.cc', |
| 117 'flow_graph_compiler_arm.h', |
| 118 'flow_graph_compiler_ia32.cc', |
| 119 'flow_graph_compiler_ia32.h', |
| 116 'flow_graph_compiler_x64.cc', | 120 'flow_graph_compiler_x64.cc', |
| 117 'flow_graph_compiler_x64.h', | 121 'flow_graph_compiler_x64.h', |
| 118 'freelist.cc', | 122 'freelist.cc', |
| 119 'freelist.h', | 123 'freelist.h', |
| 120 'freelist_test.cc', | 124 'freelist_test.cc', |
| 121 'gc_marker.cc', | 125 'gc_marker.cc', |
| 122 'gc_marker.h', | 126 'gc_marker.h', |
| 123 'gc_sweeper.cc', | 127 'gc_sweeper.cc', |
| 124 'gc_sweeper.h', | 128 'gc_sweeper.h', |
| 125 'gdbjit_linux.cc', | 129 'gdbjit_linux.cc', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'virtual_memory_test.cc', | 260 'virtual_memory_test.cc', |
| 257 'virtual_memory_win.cc', | 261 'virtual_memory_win.cc', |
| 258 'verifier.cc', | 262 'verifier.cc', |
| 259 'verifier.h', | 263 'verifier.h', |
| 260 'visitor.h', | 264 'visitor.h', |
| 261 'zone.cc', | 265 'zone.cc', |
| 262 'zone.h', | 266 'zone.h', |
| 263 'zone_test.cc', | 267 'zone_test.cc', |
| 264 ], | 268 ], |
| 265 } | 269 } |
| OLD | NEW |