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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'constants_mips.h', | 93 'constants_mips.h', |
94 'constants_x64.h', | 94 'constants_x64.h', |
95 'coverage.cc', | 95 'coverage.cc', |
96 'coverage.h', | 96 'coverage.h', |
97 'cpu.h', | 97 'cpu.h', |
98 'cpu_arm.cc', | 98 'cpu_arm.cc', |
99 'cpu_ia32.cc', | 99 'cpu_ia32.cc', |
100 'cpu_mips.cc', | 100 'cpu_mips.cc', |
101 'cpu_test.cc', | 101 'cpu_test.cc', |
102 'cpu_x64.cc', | 102 'cpu_x64.cc', |
103 'cpuinfo.h', | |
104 'cpuinfo_android.cc', | |
105 'cpuinfo_linux.cc', | |
106 'cpuinfo_macos.cc', | |
107 'cpuinfo_test.cc', | |
108 'cpuinfo_win.cc', | |
109 'custom_isolate_test.cc', | 103 'custom_isolate_test.cc', |
110 'dart.cc', | 104 'dart.cc', |
111 'dart.h', | 105 'dart.h', |
112 'dart_api_impl.h', | 106 'dart_api_impl.h', |
113 'dart_api_impl_test.cc', | 107 'dart_api_impl_test.cc', |
114 'dart_api_message.cc', | 108 'dart_api_message.cc', |
115 'dart_api_message.h', | 109 'dart_api_message.h', |
116 'dart_api_state.h', | 110 'dart_api_state.h', |
117 'dart_entry.cc', | 111 'dart_entry.cc', |
118 'dart_entry.h', | 112 'dart_entry.h', |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 'visitor.h', | 380 'visitor.h', |
387 'vtune.cc', | 381 'vtune.cc', |
388 'vtune.h', | 382 'vtune.h', |
389 'weak_table.cc', | 383 'weak_table.cc', |
390 'weak_table.h', | 384 'weak_table.h', |
391 'zone.cc', | 385 'zone.cc', |
392 'zone.h', | 386 'zone.h', |
393 'zone_test.cc', | 387 'zone_test.cc', |
394 ], | 388 ], |
395 } | 389 } |
OLD | NEW |