| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'json_test.cc', | 164 'json_test.cc', |
| 165 'longjump.cc', | 165 'longjump.cc', |
| 166 'longjump.h', | 166 'longjump.h', |
| 167 'longjump_test.cc', | 167 'longjump_test.cc', |
| 168 'memory_region.cc', | 168 'memory_region.cc', |
| 169 'memory_region.h', | 169 'memory_region.h', |
| 170 'memory_region_test.cc', | 170 'memory_region_test.cc', |
| 171 'message.cc', | 171 'message.cc', |
| 172 'message.h', | 172 'message.h', |
| 173 'message_test.cc', | 173 'message_test.cc', |
| 174 'message_handler.cc', |
| 175 'message_handler.h', |
| 176 'message_handler_test.cc', |
| 174 'native_arguments.cc', | 177 'native_arguments.cc', |
| 175 'native_arguments.h', | 178 'native_arguments.h', |
| 176 'native_entry.cc', | 179 'native_entry.cc', |
| 177 'native_entry.h', | 180 'native_entry.h', |
| 178 'native_entry_test.cc', | 181 'native_entry_test.cc', |
| 179 'native_entry_test.h', | 182 'native_entry_test.h', |
| 180 'native_message_handler.cc', | 183 'native_message_handler.cc', |
| 181 'native_message_handler.h', | 184 'native_message_handler.h', |
| 182 'object.cc', | 185 'object.cc', |
| 183 'object.h', | 186 'object.h', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 'virtual_memory_test.cc', | 273 'virtual_memory_test.cc', |
| 271 'virtual_memory_win.cc', | 274 'virtual_memory_win.cc', |
| 272 'verifier.cc', | 275 'verifier.cc', |
| 273 'verifier.h', | 276 'verifier.h', |
| 274 'visitor.h', | 277 'visitor.h', |
| 275 'zone.cc', | 278 'zone.cc', |
| 276 'zone.h', | 279 'zone.h', |
| 277 'zone_test.cc', | 280 'zone_test.cc', |
| 278 ], | 281 ], |
| 279 } | 282 } |
| OLD | NEW |