| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 'isolate_macos.h', | 130 'isolate_macos.h', |
| 131 'isolate_test.cc', | 131 'isolate_test.cc', |
| 132 'isolate_win.cc', | 132 'isolate_win.cc', |
| 133 'isolate_win.h', | 133 'isolate_win.h', |
| 134 'longjump.cc', | 134 'longjump.cc', |
| 135 'longjump.h', | 135 'longjump.h', |
| 136 'longjump_test.cc', | 136 'longjump_test.cc', |
| 137 'memory_region.cc', | 137 'memory_region.cc', |
| 138 'memory_region.h', | 138 'memory_region.h', |
| 139 'memory_region_test.cc', | 139 'memory_region_test.cc', |
| 140 'message_queue.cc', |
| 141 'message_queue.h', |
| 142 'message_queue_test.cc', |
| 140 'native_arguments.cc', | 143 'native_arguments.cc', |
| 141 'native_arguments.h', | 144 'native_arguments.h', |
| 142 'native_entry.cc', | 145 'native_entry.cc', |
| 143 'native_entry.h', | 146 'native_entry.h', |
| 144 'native_entry_test.cc', | 147 'native_entry_test.cc', |
| 145 'native_entry_test.h', | 148 'native_entry_test.h', |
| 146 'object.cc', | 149 'object.cc', |
| 147 'object.h', | 150 'object.h', |
| 148 'object_test.cc', | 151 'object_test.cc', |
| 149 'object_arm_test.cc', | 152 'object_arm_test.cc', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 'virtual_memory_test.cc', | 240 'virtual_memory_test.cc', |
| 238 'virtual_memory_win.cc', | 241 'virtual_memory_win.cc', |
| 239 'verifier.cc', | 242 'verifier.cc', |
| 240 'verifier.h', | 243 'verifier.h', |
| 241 'visitor.h', | 244 'visitor.h', |
| 242 'zone.cc', | 245 'zone.cc', |
| 243 'zone.h', | 246 'zone.h', |
| 244 'zone_test.cc', | 247 'zone_test.cc', |
| 245 ], | 248 ], |
| 246 } | 249 } |
| OLD | NEW |