OLD | NEW |
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 'handles_impl.h', | 119 'handles_impl.h', |
120 'handles_test.cc', | 120 'handles_test.cc', |
121 'heap.cc', | 121 'heap.cc', |
122 'heap.h', | 122 'heap.h', |
123 'heap_test.cc', | 123 'heap_test.cc', |
124 'ic_data.h', | 124 'ic_data.h', |
125 'ic_data.cc', | 125 'ic_data.cc', |
126 'ic_data_test.cc', | 126 'ic_data_test.cc', |
127 'inttypes_support_win.h', | 127 'inttypes_support_win.h', |
128 'instructions.h', | 128 'instructions.h', |
| 129 'instructions_ia32.cc', |
129 'instructions_ia32.h', | 130 'instructions_ia32.h', |
130 'instructions_ia32.cc', | |
131 'instructions_ia32_test.cc', | 131 'instructions_ia32_test.cc', |
| 132 'instructions_x64.cc', |
| 133 'instructions_x64.h', |
| 134 'instructions_x64_test.cc', |
132 'intrinsifier.h', | 135 'intrinsifier.h', |
133 'intrinsifier_ia32.cc', | 136 'intrinsifier_ia32.cc', |
134 'intrinsifier_x64.cc', | 137 'intrinsifier_x64.cc', |
135 'intrinsifier_arm.cc', | 138 'intrinsifier_arm.cc', |
136 'isolate.cc', | 139 'isolate.cc', |
137 'isolate.h', | 140 'isolate.h', |
138 'isolate_linux.cc', | 141 'isolate_linux.cc', |
139 'isolate_linux.h', | 142 'isolate_linux.h', |
140 'isolate_macos.cc', | 143 'isolate_macos.cc', |
141 'isolate_macos.h', | 144 'isolate_macos.h', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 'virtual_memory_test.cc', | 256 'virtual_memory_test.cc', |
254 'virtual_memory_win.cc', | 257 'virtual_memory_win.cc', |
255 'verifier.cc', | 258 'verifier.cc', |
256 'verifier.h', | 259 'verifier.h', |
257 'visitor.h', | 260 'visitor.h', |
258 'zone.cc', | 261 'zone.cc', |
259 'zone.h', | 262 'zone.h', |
260 'zone_test.cc', | 263 'zone_test.cc', |
261 ], | 264 ], |
262 } | 265 } |
OLD | NEW |