| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'dart.cc', | 119 'dart.cc', |
| 120 'dart.h', | 120 'dart.h', |
| 121 'dart_api_impl.h', | 121 'dart_api_impl.h', |
| 122 'dart_api_impl_test.cc', | 122 'dart_api_impl_test.cc', |
| 123 'dart_api_message.cc', | 123 'dart_api_message.cc', |
| 124 'dart_api_message.h', | 124 'dart_api_message.h', |
| 125 'dart_api_state.h', | 125 'dart_api_state.h', |
| 126 'dart_entry.cc', | 126 'dart_entry.cc', |
| 127 'dart_entry.h', | 127 'dart_entry.h', |
| 128 'dart_entry_test.cc', | 128 'dart_entry_test.cc', |
| 129 'datastream.h', |
| 129 'debugger.cc', | 130 'debugger.cc', |
| 130 'debugger_test.cc', | 131 'debugger_test.cc', |
| 131 'debugger.h', | 132 'debugger.h', |
| 132 'debugger_api_impl_test.cc', | 133 'debugger_api_impl_test.cc', |
| 133 'debugger_arm.cc', | 134 'debugger_arm.cc', |
| 134 'debugger_arm64.cc', | 135 'debugger_arm64.cc', |
| 135 'debugger_ia32.cc', | 136 'debugger_ia32.cc', |
| 136 'debugger_mips.cc', | 137 'debugger_mips.cc', |
| 137 'debugger_x64.cc', | 138 'debugger_x64.cc', |
| 138 'debuginfo.h', | 139 'debuginfo.h', |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 'visitor.h', | 413 'visitor.h', |
| 413 'vtune.cc', | 414 'vtune.cc', |
| 414 'vtune.h', | 415 'vtune.h', |
| 415 'weak_table.cc', | 416 'weak_table.cc', |
| 416 'weak_table.h', | 417 'weak_table.h', |
| 417 'zone.cc', | 418 'zone.cc', |
| 418 'zone.h', | 419 'zone.h', |
| 419 'zone_test.cc', | 420 'zone_test.cc', |
| 420 ], | 421 ], |
| 421 } | 422 } |
| OLD | NEW |