| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 'isolate.h', | 265 'isolate.h', |
| 266 'isolate_reload.cc', | 266 'isolate_reload.cc', |
| 267 'isolate_reload.h', | 267 'isolate_reload.h', |
| 268 'isolate_reload_test.cc', | 268 'isolate_reload_test.cc', |
| 269 'isolate_test.cc', | 269 'isolate_test.cc', |
| 270 'jit_optimizer.cc', | 270 'jit_optimizer.cc', |
| 271 'jit_optimizer.h', | 271 'jit_optimizer.h', |
| 272 'json_stream.h', | 272 'json_stream.h', |
| 273 'json_stream.cc', | 273 'json_stream.cc', |
| 274 'json_test.cc', | 274 'json_test.cc', |
| 275 'kernel_isolate.cc', | |
| 276 'kernel_isolate.h', | |
| 277 'locations.cc', | 275 'locations.cc', |
| 278 'locations.h', | 276 'locations.h', |
| 279 'lockers.cc', | 277 'lockers.cc', |
| 280 'lockers.h', | 278 'lockers.h', |
| 281 'log_test.cc', | 279 'log_test.cc', |
| 282 'log.cc', | 280 'log.cc', |
| 283 'log.h', | 281 'log.h', |
| 284 'longjump.cc', | 282 'longjump.cc', |
| 285 'longjump.h', | 283 'longjump.h', |
| 286 'longjump_test.cc', | 284 'longjump_test.cc', |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 'visitor.h', | 541 'visitor.h', |
| 544 'weak_code.cc', | 542 'weak_code.cc', |
| 545 'weak_code.h', | 543 'weak_code.h', |
| 546 'weak_table.cc', | 544 'weak_table.cc', |
| 547 'weak_table.h', | 545 'weak_table.h', |
| 548 'zone.cc', | 546 'zone.cc', |
| 549 'zone.h', | 547 'zone.h', |
| 550 'zone_test.cc', | 548 'zone_test.cc', |
| 551 ], | 549 ], |
| 552 } | 550 } |
| OLD | NEW |