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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'handles.cc', | 103 'handles.cc', |
104 'handles.h', | 104 'handles.h', |
105 'handles_impl.h', | 105 'handles_impl.h', |
106 'handles_test.cc', | 106 'handles_test.cc', |
107 'heap.cc', | 107 'heap.cc', |
108 'heap.h', | 108 'heap.h', |
109 'heap_test.cc', | 109 'heap_test.cc', |
110 'ic_data.h', | 110 'ic_data.h', |
111 'ic_data.cc', | 111 'ic_data.cc', |
112 'ic_data_test.cc', | 112 'ic_data_test.cc', |
113 'ic_stubs.h', | |
114 'ic_stubs_ia32.cc', | |
115 'ic_stubs_ia32_test.cc', | |
116 'ic_stubs_x64.cc', | |
117 'ic_stubs_arm.cc', | |
118 'inttypes_support_win.h', | 113 'inttypes_support_win.h', |
119 'instructions.h', | 114 'instructions.h', |
120 'instructions_ia32.h', | 115 'instructions_ia32.h', |
121 'instructions_ia32.cc', | 116 'instructions_ia32.cc', |
122 'instructions_ia32_test.cc', | 117 'instructions_ia32_test.cc', |
123 'intrinsifier.h', | 118 'intrinsifier.h', |
124 'intrinsifier_ia32.cc', | 119 'intrinsifier_ia32.cc', |
125 'intrinsifier_x64.cc', | 120 'intrinsifier_x64.cc', |
126 'intrinsifier_arm.cc', | 121 'intrinsifier_arm.cc', |
127 'isolate.cc', | 122 'isolate.cc', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 'virtual_memory_test.cc', | 238 'virtual_memory_test.cc', |
244 'virtual_memory_win.cc', | 239 'virtual_memory_win.cc', |
245 'verifier.cc', | 240 'verifier.cc', |
246 'verifier.h', | 241 'verifier.h', |
247 'visitor.h', | 242 'visitor.h', |
248 'zone.cc', | 243 'zone.cc', |
249 'zone.h', | 244 'zone.h', |
250 'zone_test.cc', | 245 'zone_test.cc', |
251 ], | 246 ], |
252 } | 247 } |
OLD | NEW |