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