| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'instructions_ia32_test.cc', | 136 'instructions_ia32_test.cc', |
| 137 'instructions_x64.cc', | 137 'instructions_x64.cc', |
| 138 'instructions_x64.h', | 138 'instructions_x64.h', |
| 139 'instructions_x64_test.cc', | 139 'instructions_x64_test.cc', |
| 140 'intrinsifier.h', | 140 'intrinsifier.h', |
| 141 'intrinsifier_ia32.cc', | 141 'intrinsifier_ia32.cc', |
| 142 'intrinsifier_x64.cc', | 142 'intrinsifier_x64.cc', |
| 143 'intrinsifier_arm.cc', | 143 'intrinsifier_arm.cc', |
| 144 'isolate.cc', | 144 'isolate.cc', |
| 145 'isolate.h', | 145 'isolate.h', |
| 146 'isolate_linux.cc', | |
| 147 'isolate_linux.h', | |
| 148 'isolate_macos.cc', | |
| 149 'isolate_macos.h', | |
| 150 'isolate_test.cc', | 146 'isolate_test.cc', |
| 151 'isolate_win.cc', | |
| 152 'isolate_win.h', | |
| 153 'longjump.cc', | 147 'longjump.cc', |
| 154 'longjump.h', | 148 'longjump.h', |
| 155 'longjump_test.cc', | 149 'longjump_test.cc', |
| 156 'memory_region.cc', | 150 'memory_region.cc', |
| 157 'memory_region.h', | 151 'memory_region.h', |
| 158 'memory_region_test.cc', | 152 'memory_region_test.cc', |
| 159 'message.cc', | 153 'message.cc', |
| 160 'message.h', | 154 'message.h', |
| 161 'message_test.cc', | 155 'message_test.cc', |
| 162 'native_arguments.cc', | 156 'native_arguments.cc', |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 'virtual_memory_test.cc', | 249 'virtual_memory_test.cc', |
| 256 'virtual_memory_win.cc', | 250 'virtual_memory_win.cc', |
| 257 'verifier.cc', | 251 'verifier.cc', |
| 258 'verifier.h', | 252 'verifier.h', |
| 259 'visitor.h', | 253 'visitor.h', |
| 260 'zone.cc', | 254 'zone.cc', |
| 261 'zone.h', | 255 'zone.h', |
| 262 'zone_test.cc', | 256 'zone_test.cc', |
| 263 ], | 257 ], |
| 264 } | 258 } |
| OLD | NEW |