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