| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'debuginfo.h', | 96 'debuginfo.h', |
| 97 'debuginfo_linux.cc', | 97 'debuginfo_linux.cc', |
| 98 'debuginfo_macos.cc', | 98 'debuginfo_macos.cc', |
| 99 'debuginfo_win.cc', | 99 'debuginfo_win.cc', |
| 100 'exceptions.cc', | 100 'exceptions.cc', |
| 101 'exceptions.h', | 101 'exceptions.h', |
| 102 'exceptions_test.cc', | 102 'exceptions_test.cc', |
| 103 'flags.cc', | 103 'flags.cc', |
| 104 'flags.h', | 104 'flags.h', |
| 105 'flags_test.cc', | 105 'flags_test.cc', |
| 106 'freelist.cc', |
| 107 'freelist.h', |
| 108 'freelist_test.cc', |
| 106 'gc_marker.cc', | 109 'gc_marker.cc', |
| 107 'gc_marker.h', | 110 'gc_marker.h', |
| 108 'gdbjit_linux.cc', | 111 'gdbjit_linux.cc', |
| 109 'gdbjit_linux.h', | 112 'gdbjit_linux.h', |
| 110 'globals.h', | 113 'globals.h', |
| 111 'growable_array.h', | 114 'growable_array.h', |
| 112 'growable_array_test.cc', | 115 'growable_array_test.cc', |
| 113 'handles.cc', | 116 'handles.cc', |
| 114 'handles.h', | 117 'handles.h', |
| 115 'handles_impl.h', | 118 'handles_impl.h', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 'virtual_memory_test.cc', | 251 'virtual_memory_test.cc', |
| 249 'virtual_memory_win.cc', | 252 'virtual_memory_win.cc', |
| 250 'verifier.cc', | 253 'verifier.cc', |
| 251 'verifier.h', | 254 'verifier.h', |
| 252 'visitor.h', | 255 'visitor.h', |
| 253 'zone.cc', | 256 'zone.cc', |
| 254 'zone.h', | 257 'zone.h', |
| 255 'zone_test.cc', | 258 'zone_test.cc', |
| 256 ], | 259 ], |
| 257 } | 260 } |
| OLD | NEW |