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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 'scanner.h', | 376 'scanner.h', |
377 'scanner_test.cc', | 377 'scanner_test.cc', |
378 'scavenger.cc', | 378 'scavenger.cc', |
379 'scavenger.h', | 379 'scavenger.h', |
380 'scavenger_test.cc', | 380 'scavenger_test.cc', |
381 'scope_timer.h', | 381 'scope_timer.h', |
382 'scopes.cc', | 382 'scopes.cc', |
383 'scopes.h', | 383 'scopes.h', |
384 'scopes_test.cc', | 384 'scopes_test.cc', |
385 'service.cc', | 385 'service.cc', |
| 386 'service.h', |
| 387 'service_isolate.cc', |
| 388 'service_isolate.h', |
386 'service_test.cc', | 389 'service_test.cc', |
387 'service.h', | |
388 'signal_handler_android.cc', | 390 'signal_handler_android.cc', |
389 'signal_handler_linux.cc', | 391 'signal_handler_linux.cc', |
390 'signal_handler_macos.cc', | 392 'signal_handler_macos.cc', |
391 'signal_handler_win.cc', | 393 'signal_handler_win.cc', |
392 'signal_handler.h', | 394 'signal_handler.h', |
393 'simulator.h', | 395 'simulator.h', |
394 'simulator_arm.cc', | 396 'simulator_arm.cc', |
395 'simulator_arm.h', | 397 'simulator_arm.h', |
396 'simulator_arm64.cc', | 398 'simulator_arm64.cc', |
397 'simulator_arm64.h', | 399 'simulator_arm64.h', |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 'vtune.h', | 476 'vtune.h', |
475 'weak_code.cc', | 477 'weak_code.cc', |
476 'weak_code.h', | 478 'weak_code.h', |
477 'weak_table.cc', | 479 'weak_table.cc', |
478 'weak_table.h', | 480 'weak_table.h', |
479 'zone.cc', | 481 'zone.cc', |
480 'zone.h', | 482 'zone.h', |
481 'zone_test.cc', | 483 'zone_test.cc', |
482 ], | 484 ], |
483 } | 485 } |
OLD | NEW |