| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 'store_buffer.cc', | 227 'store_buffer.cc', |
| 228 'store_buffer.h', | 228 'store_buffer.h', |
| 229 'stub_code.cc', | 229 'stub_code.cc', |
| 230 'stub_code.h', | 230 'stub_code.h', |
| 231 'stub_code_arm.cc', | 231 'stub_code_arm.cc', |
| 232 'stub_code_ia32.cc', | 232 'stub_code_ia32.cc', |
| 233 'stub_code_ia32_test.cc', | 233 'stub_code_ia32_test.cc', |
| 234 'stub_code_x64.cc', | 234 'stub_code_x64.cc', |
| 235 'stub_code_x64_test.cc', | 235 'stub_code_x64_test.cc', |
| 236 'thread.h', | 236 'thread.h', |
| 237 'thread_linux.cc', | |
| 238 'thread_linux.h', | |
| 239 'thread_macos.cc', | |
| 240 'thread_macos.h', | |
| 241 'thread_test.cc', | 237 'thread_test.cc', |
| 242 'thread_win.cc', | |
| 243 'thread_win.h', | |
| 244 'timer.cc', | 238 'timer.cc', |
| 245 'timer.h', | 239 'timer.h', |
| 246 'token.cc', | 240 'token.cc', |
| 247 'token.h', | 241 'token.h', |
| 248 'unicode.cc', | 242 'unicode.cc', |
| 249 'unicode.h', | 243 'unicode.h', |
| 250 'unicode_data.cc', | 244 'unicode_data.cc', |
| 251 'unicode_test.cc', | 245 'unicode_test.cc', |
| 252 'unit_test.cc', | 246 'unit_test.cc', |
| 253 'unit_test.h', | 247 'unit_test.h', |
| 254 'utils_test.cc', | 248 'utils_test.cc', |
| 255 'virtual_memory.cc', | 249 'virtual_memory.cc', |
| 256 'virtual_memory.h', | 250 'virtual_memory.h', |
| 257 'virtual_memory_linux.cc', | 251 'virtual_memory_linux.cc', |
| 258 'virtual_memory_macos.cc', | 252 'virtual_memory_macos.cc', |
| 259 'virtual_memory_test.cc', | 253 'virtual_memory_test.cc', |
| 260 'virtual_memory_win.cc', | 254 'virtual_memory_win.cc', |
| 261 'verifier.cc', | 255 'verifier.cc', |
| 262 'verifier.h', | 256 'verifier.h', |
| 263 'visitor.h', | 257 'visitor.h', |
| 264 'zone.cc', | 258 'zone.cc', |
| 265 'zone.h', | 259 'zone.h', |
| 266 'zone_test.cc', | 260 'zone_test.cc', |
| 267 ], | 261 ], |
| 268 } | 262 } |
| OLD | NEW |