| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'debuginfo.h', | 92 'debuginfo.h', |
| 93 'debuginfo_linux.cc', | 93 'debuginfo_linux.cc', |
| 94 'debuginfo_macos.cc', | 94 'debuginfo_macos.cc', |
| 95 'debuginfo_win.cc', | 95 'debuginfo_win.cc', |
| 96 'exceptions.cc', | 96 'exceptions.cc', |
| 97 'exceptions.h', | 97 'exceptions.h', |
| 98 'exceptions_test.cc', | 98 'exceptions_test.cc', |
| 99 'flags.cc', | 99 'flags.cc', |
| 100 'flags.h', | 100 'flags.h', |
| 101 'flags_test.cc', | 101 'flags_test.cc', |
| 102 'gc_marker.cc', |
| 103 'gc_marker.h', |
| 102 'gdbjit_linux.cc', | 104 'gdbjit_linux.cc', |
| 103 'gdbjit_linux.h', | 105 'gdbjit_linux.h', |
| 104 'globals.h', | 106 'globals.h', |
| 105 'growable_array.h', | 107 'growable_array.h', |
| 106 'growable_array_test.cc', | 108 'growable_array_test.cc', |
| 107 'handles.cc', | 109 'handles.cc', |
| 108 'handles.h', | 110 'handles.h', |
| 109 'handles_impl.h', | 111 'handles_impl.h', |
| 110 'handles_test.cc', | 112 'handles_test.cc', |
| 111 'heap.cc', | 113 'heap.cc', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 'virtual_memory_test.cc', | 244 'virtual_memory_test.cc', |
| 243 'virtual_memory_win.cc', | 245 'virtual_memory_win.cc', |
| 244 'verifier.cc', | 246 'verifier.cc', |
| 245 'verifier.h', | 247 'verifier.h', |
| 246 'visitor.h', | 248 'visitor.h', |
| 247 'zone.cc', | 249 'zone.cc', |
| 248 'zone.h', | 250 'zone.h', |
| 249 'zone_test.cc', | 251 'zone_test.cc', |
| 250 ], | 252 ], |
| 251 } | 253 } |
| OLD | NEW |