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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 'dart.cc', | 112 'dart.cc', |
113 'dart.h', | 113 'dart.h', |
114 'dart_api_impl.h', | 114 'dart_api_impl.h', |
115 'dart_api_impl_test.cc', | 115 'dart_api_impl_test.cc', |
116 'dart_api_message.cc', | 116 'dart_api_message.cc', |
117 'dart_api_message.h', | 117 'dart_api_message.h', |
118 'dart_api_state.h', | 118 'dart_api_state.h', |
119 'dart_entry.cc', | 119 'dart_entry.cc', |
120 'dart_entry.h', | 120 'dart_entry.h', |
121 'dart_entry_test.cc', | 121 'dart_entry_test.cc', |
| 122 'datastream.h', |
122 'debugger.cc', | 123 'debugger.cc', |
123 'debugger_test.cc', | 124 'debugger_test.cc', |
124 'debugger.h', | 125 'debugger.h', |
125 'debugger_api_impl_test.cc', | 126 'debugger_api_impl_test.cc', |
126 'debugger_arm.cc', | 127 'debugger_arm.cc', |
127 'debugger_ia32.cc', | 128 'debugger_ia32.cc', |
128 'debugger_mips.cc', | 129 'debugger_mips.cc', |
129 'debugger_x64.cc', | 130 'debugger_x64.cc', |
130 'debuginfo.h', | 131 'debuginfo.h', |
131 'debuginfo_android.cc', | 132 'debuginfo_android.cc', |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 'visitor.h', | 391 'visitor.h', |
391 'vtune.cc', | 392 'vtune.cc', |
392 'vtune.h', | 393 'vtune.h', |
393 'weak_table.cc', | 394 'weak_table.cc', |
394 'weak_table.h', | 395 'weak_table.h', |
395 'zone.cc', | 396 'zone.cc', |
396 'zone.h', | 397 'zone.h', |
397 'zone_test.cc', | 398 'zone_test.cc', |
398 ], | 399 ], |
399 } | 400 } |
OLD | NEW |