| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'intrinsifier_x64.cc', | 252 'intrinsifier_x64.cc', |
| 253 'isolate.cc', | 253 'isolate.cc', |
| 254 'isolate.h', | 254 'isolate.h', |
| 255 'isolate_test.cc', | 255 'isolate_test.cc', |
| 256 'json_stream.h', | 256 'json_stream.h', |
| 257 'json_stream.cc', | 257 'json_stream.cc', |
| 258 'json_test.cc', | 258 'json_test.cc', |
| 259 'locations.cc', | 259 'locations.cc', |
| 260 'locations.h', | 260 'locations.h', |
| 261 'lockers.h', | 261 'lockers.h', |
| 262 'log_test.cc', |
| 263 'log.cc', |
| 264 'log.h', |
| 262 'longjump.cc', | 265 'longjump.cc', |
| 263 'longjump.h', | 266 'longjump.h', |
| 264 'longjump_test.cc', | 267 'longjump_test.cc', |
| 265 'megamorphic_cache_table.cc', | 268 'megamorphic_cache_table.cc', |
| 266 'megamorphic_cache_table.h', | 269 'megamorphic_cache_table.h', |
| 267 'memory_region.cc', | 270 'memory_region.cc', |
| 268 'memory_region.h', | 271 'memory_region.h', |
| 269 'memory_region_test.cc', | 272 'memory_region_test.cc', |
| 270 'message.cc', | 273 'message.cc', |
| 271 'message.h', | 274 'message.h', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 'vtune.h', | 471 'vtune.h', |
| 469 'weak_code.cc', | 472 'weak_code.cc', |
| 470 'weak_code.h', | 473 'weak_code.h', |
| 471 'weak_table.cc', | 474 'weak_table.cc', |
| 472 'weak_table.h', | 475 'weak_table.h', |
| 473 'zone.cc', | 476 'zone.cc', |
| 474 'zone.h', | 477 'zone.h', |
| 475 'zone_test.cc', | 478 'zone_test.cc', |
| 476 ], | 479 ], |
| 477 } | 480 } |
| OLD | NEW |