| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'dart.h', | 100 'dart.h', |
| 101 'dart_api_impl.h', | 101 'dart_api_impl.h', |
| 102 'dart_api_impl_test.cc', | 102 'dart_api_impl_test.cc', |
| 103 'dart_api_message.cc', | 103 'dart_api_message.cc', |
| 104 'dart_api_message.h', | 104 'dart_api_message.h', |
| 105 'dart_api_state.h', | 105 'dart_api_state.h', |
| 106 'dart_entry.cc', | 106 'dart_entry.cc', |
| 107 'dart_entry.h', | 107 'dart_entry.h', |
| 108 'dart_entry_test.cc', | 108 'dart_entry_test.cc', |
| 109 'debugger.cc', | 109 'debugger.cc', |
| 110 'debugger_test.cc', |
| 110 'debugger.h', | 111 'debugger.h', |
| 111 'debugger_api_impl_test.cc', | 112 'debugger_api_impl_test.cc', |
| 112 'debugger_arm.cc', | 113 'debugger_arm.cc', |
| 113 'debugger_ia32.cc', | 114 'debugger_ia32.cc', |
| 114 'debugger_mips.cc', | 115 'debugger_mips.cc', |
| 115 'debugger_x64.cc', | 116 'debugger_x64.cc', |
| 116 'debuginfo.h', | 117 'debuginfo.h', |
| 117 'debuginfo_android.cc', | 118 'debuginfo_android.cc', |
| 118 'debuginfo_linux.cc', | 119 'debuginfo_linux.cc', |
| 119 'deferred_objects.cc', | 120 'deferred_objects.cc', |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 'runtime_entry_x64.cc', | 300 'runtime_entry_x64.cc', |
| 300 'scanner.cc', | 301 'scanner.cc', |
| 301 'scanner.h', | 302 'scanner.h', |
| 302 'scanner_test.cc', | 303 'scanner_test.cc', |
| 303 'scavenger.cc', | 304 'scavenger.cc', |
| 304 'scavenger.h', | 305 'scavenger.h', |
| 305 'scopes.cc', | 306 'scopes.cc', |
| 306 'scopes.h', | 307 'scopes.h', |
| 307 'scopes_test.cc', | 308 'scopes_test.cc', |
| 308 'service.cc', | 309 'service.cc', |
| 310 'service_test.cc', |
| 309 'service.h', | 311 'service.h', |
| 310 'signal_handler_android.cc', | 312 'signal_handler_android.cc', |
| 311 'signal_handler_linux.cc', | 313 'signal_handler_linux.cc', |
| 312 'signal_handler_macos.cc', | 314 'signal_handler_macos.cc', |
| 313 'signal_handler_win.cc', | 315 'signal_handler_win.cc', |
| 314 'signal_handler.h', | 316 'signal_handler.h', |
| 315 'simulator.h', | 317 'simulator.h', |
| 316 'simulator_arm.cc', | 318 'simulator_arm.cc', |
| 317 'simulator_arm.h', | 319 'simulator_arm.h', |
| 318 'simulator_mips.cc', | 320 'simulator_mips.cc', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'visitor.h', | 375 'visitor.h', |
| 374 'vtune.cc', | 376 'vtune.cc', |
| 375 'vtune.h', | 377 'vtune.h', |
| 376 'weak_table.cc', | 378 'weak_table.cc', |
| 377 'weak_table.h', | 379 'weak_table.h', |
| 378 'zone.cc', | 380 'zone.cc', |
| 379 'zone.h', | 381 'zone.h', |
| 380 'zone_test.cc', | 382 'zone_test.cc', |
| 381 ], | 383 ], |
| 382 } | 384 } |
| OLD | NEW |