OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 'isolate_macos.h', | 149 'isolate_macos.h', |
150 'isolate_test.cc', | 150 'isolate_test.cc', |
151 'isolate_win.cc', | 151 'isolate_win.cc', |
152 'isolate_win.h', | 152 'isolate_win.h', |
153 'longjump.cc', | 153 'longjump.cc', |
154 'longjump.h', | 154 'longjump.h', |
155 'longjump_test.cc', | 155 'longjump_test.cc', |
156 'memory_region.cc', | 156 'memory_region.cc', |
157 'memory_region.h', | 157 'memory_region.h', |
158 'memory_region_test.cc', | 158 'memory_region_test.cc', |
159 'message_queue.cc', | 159 'message.cc', |
160 'message_queue.h', | 160 'message.h', |
161 'message_queue_test.cc', | 161 'message_test.cc', |
162 'native_arguments.cc', | 162 'native_arguments.cc', |
163 'native_arguments.h', | 163 'native_arguments.h', |
164 'native_entry.cc', | 164 'native_entry.cc', |
165 'native_entry.h', | 165 'native_entry.h', |
166 'native_entry_test.cc', | 166 'native_entry_test.cc', |
167 'native_entry_test.h', | 167 'native_entry_test.h', |
| 168 'native_message_handler.cc', |
| 169 'native_message_handler.h', |
168 'object.cc', | 170 'object.cc', |
169 'object.h', | 171 'object.h', |
170 'object_test.cc', | 172 'object_test.cc', |
171 'object_arm_test.cc', | 173 'object_arm_test.cc', |
172 'object_ia32_test.cc', | 174 'object_ia32_test.cc', |
173 'object_x64_test.cc', | 175 'object_x64_test.cc', |
174 'object_store.cc', | 176 'object_store.cc', |
175 'object_store.h', | 177 'object_store.h', |
176 'object_store_test.cc', | 178 'object_store_test.cc', |
177 'opt_code_generator.h', | 179 'opt_code_generator.h', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 'virtual_memory_test.cc', | 255 'virtual_memory_test.cc', |
254 'virtual_memory_win.cc', | 256 'virtual_memory_win.cc', |
255 'verifier.cc', | 257 'verifier.cc', |
256 'verifier.h', | 258 'verifier.h', |
257 'visitor.h', | 259 'visitor.h', |
258 'zone.cc', | 260 'zone.cc', |
259 'zone.h', | 261 'zone.h', |
260 'zone_test.cc', | 262 'zone_test.cc', |
261 ], | 263 ], |
262 } | 264 } |
OLD | NEW |