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