| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'dart.h', | 105 'dart.h', |
| 106 'dart_api_impl.h', | 106 'dart_api_impl.h', |
| 107 'dart_api_impl_test.cc', | 107 'dart_api_impl_test.cc', |
| 108 'dart_api_message.cc', | 108 'dart_api_message.cc', |
| 109 'dart_api_message.h', | 109 'dart_api_message.h', |
| 110 'dart_api_state.h', | 110 'dart_api_state.h', |
| 111 'dart_entry.cc', | 111 'dart_entry.cc', |
| 112 'dart_entry.h', | 112 'dart_entry.h', |
| 113 'dart_entry_test.cc', | 113 'dart_entry_test.cc', |
| 114 'debugger.cc', | 114 'debugger.cc', |
| 115 'debugger_test.cc', |
| 115 'debugger.h', | 116 'debugger.h', |
| 116 'debugger_api_impl_test.cc', | 117 'debugger_api_impl_test.cc', |
| 117 'debugger_arm.cc', | 118 'debugger_arm.cc', |
| 118 'debugger_ia32.cc', | 119 'debugger_ia32.cc', |
| 119 'debugger_mips.cc', | 120 'debugger_mips.cc', |
| 120 'debugger_x64.cc', | 121 'debugger_x64.cc', |
| 121 'debuginfo.h', | 122 'debuginfo.h', |
| 122 'debuginfo_android.cc', | 123 'debuginfo_android.cc', |
| 123 'debuginfo_linux.cc', | 124 'debuginfo_linux.cc', |
| 124 'deferred_objects.cc', | 125 'deferred_objects.cc', |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 'runtime_entry_x64.cc', | 301 'runtime_entry_x64.cc', |
| 301 'scanner.cc', | 302 'scanner.cc', |
| 302 'scanner.h', | 303 'scanner.h', |
| 303 'scanner_test.cc', | 304 'scanner_test.cc', |
| 304 'scavenger.cc', | 305 'scavenger.cc', |
| 305 'scavenger.h', | 306 'scavenger.h', |
| 306 'scopes.cc', | 307 'scopes.cc', |
| 307 'scopes.h', | 308 'scopes.h', |
| 308 'scopes_test.cc', | 309 'scopes_test.cc', |
| 309 'service.cc', | 310 'service.cc', |
| 311 'service_test.cc', |
| 310 'service.h', | 312 'service.h', |
| 311 'signal_handler_android.cc', | 313 'signal_handler_android.cc', |
| 312 'signal_handler_linux.cc', | 314 'signal_handler_linux.cc', |
| 313 'signal_handler_macos.cc', | 315 'signal_handler_macos.cc', |
| 314 'signal_handler_win.cc', | 316 'signal_handler_win.cc', |
| 315 'signal_handler.h', | 317 'signal_handler.h', |
| 316 'simulator.h', | 318 'simulator.h', |
| 317 'simulator_arm.cc', | 319 'simulator_arm.cc', |
| 318 'simulator_arm.h', | 320 'simulator_arm.h', |
| 319 'simulator_mips.cc', | 321 'simulator_mips.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 'visitor.h', | 383 'visitor.h', |
| 382 'vtune.cc', | 384 'vtune.cc', |
| 383 'vtune.h', | 385 'vtune.h', |
| 384 'weak_table.cc', | 386 'weak_table.cc', |
| 385 'weak_table.h', | 387 'weak_table.h', |
| 386 'zone.cc', | 388 'zone.cc', |
| 387 'zone.h', | 389 'zone.h', |
| 388 'zone_test.cc', | 390 'zone_test.cc', |
| 389 ], | 391 ], |
| 390 } | 392 } |
| OLD | NEW |