OLD | NEW |
1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 'symbols.h', | 326 'symbols.h', |
327 'thread.h', | 327 'thread.h', |
328 'thread_pool.cc', | 328 'thread_pool.cc', |
329 'thread_pool.h', | 329 'thread_pool.h', |
330 'thread_pool_test.cc', | 330 'thread_pool_test.cc', |
331 'thread_test.cc', | 331 'thread_test.cc', |
332 'timer.cc', | 332 'timer.cc', |
333 'timer.h', | 333 'timer.h', |
334 'token.cc', | 334 'token.cc', |
335 'token.h', | 335 'token.h', |
| 336 'trace_buffer.cc', |
| 337 'trace_buffer.h', |
| 338 'trace_buffer_test.cc', |
336 'unicode.cc', | 339 'unicode.cc', |
337 'unicode.h', | 340 'unicode.h', |
338 'unicode_data.cc', | 341 'unicode_data.cc', |
339 'unicode_test.cc', | 342 'unicode_test.cc', |
340 'unit_test.cc', | 343 'unit_test.cc', |
341 'unit_test.h', | 344 'unit_test.h', |
342 'utils_test.cc', | 345 'utils_test.cc', |
343 'verifier.cc', | 346 'verifier.cc', |
344 'verifier.h', | 347 'verifier.h', |
345 'virtual_memory.cc', | 348 'virtual_memory.cc', |
346 'virtual_memory.h', | 349 'virtual_memory.h', |
347 'virtual_memory_android.cc', | 350 'virtual_memory_android.cc', |
348 'virtual_memory_linux.cc', | 351 'virtual_memory_linux.cc', |
349 'virtual_memory_macos.cc', | 352 'virtual_memory_macos.cc', |
350 'virtual_memory_test.cc', | 353 'virtual_memory_test.cc', |
351 'virtual_memory_win.cc', | 354 'virtual_memory_win.cc', |
352 'visitor.h', | 355 'visitor.h', |
353 'vtune.cc', | 356 'vtune.cc', |
354 'vtune.h', | 357 'vtune.h', |
355 'weak_table.cc', | 358 'weak_table.cc', |
356 'weak_table.h', | 359 'weak_table.h', |
357 'zone.cc', | 360 'zone.cc', |
358 'zone.h', | 361 'zone.h', |
359 'zone_test.cc', | 362 'zone_test.cc', |
360 ], | 363 ], |
361 } | 364 } |
OLD | NEW |