| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'exceptions.h', | 102 'exceptions.h', |
| 103 'exceptions_test.cc', | 103 'exceptions_test.cc', |
| 104 'flags.cc', | 104 'flags.cc', |
| 105 'flags.h', | 105 'flags.h', |
| 106 'flags_test.cc', | 106 'flags_test.cc', |
| 107 'freelist.cc', | 107 'freelist.cc', |
| 108 'freelist.h', | 108 'freelist.h', |
| 109 'freelist_test.cc', | 109 'freelist_test.cc', |
| 110 'gc_marker.cc', | 110 'gc_marker.cc', |
| 111 'gc_marker.h', | 111 'gc_marker.h', |
| 112 'gc_sweeper.cc', |
| 113 'gc_sweeper.h', |
| 112 'gdbjit_linux.cc', | 114 'gdbjit_linux.cc', |
| 113 'gdbjit_linux.h', | 115 'gdbjit_linux.h', |
| 114 'globals.h', | 116 'globals.h', |
| 115 'growable_array.h', | 117 'growable_array.h', |
| 116 'growable_array_test.cc', | 118 'growable_array_test.cc', |
| 117 'handles.cc', | 119 'handles.cc', |
| 118 'handles.h', | 120 'handles.h', |
| 119 'handles_impl.h', | 121 'handles_impl.h', |
| 120 'handles_test.cc', | 122 'handles_test.cc', |
| 121 'heap.cc', | 123 'heap.cc', |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'virtual_memory_test.cc', | 258 'virtual_memory_test.cc', |
| 257 'virtual_memory_win.cc', | 259 'virtual_memory_win.cc', |
| 258 'verifier.cc', | 260 'verifier.cc', |
| 259 'verifier.h', | 261 'verifier.h', |
| 260 'visitor.h', | 262 'visitor.h', |
| 261 'zone.cc', | 263 'zone.cc', |
| 262 'zone.h', | 264 'zone.h', |
| 263 'zone_test.cc', | 265 'zone_test.cc', |
| 264 ], | 266 ], |
| 265 } | 267 } |
| OLD | NEW |