| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 'thread_interrupter_linux.cc', | 349 'thread_interrupter_linux.cc', |
| 350 'thread_interrupter_macos.cc', | 350 'thread_interrupter_macos.cc', |
| 351 'thread_interrupter_test.cc', | 351 'thread_interrupter_test.cc', |
| 352 'thread_interrupter_win.cc', | 352 'thread_interrupter_win.cc', |
| 353 'thread_pool.cc', | 353 'thread_pool.cc', |
| 354 'thread_pool.h', | 354 'thread_pool.h', |
| 355 'thread_pool_test.cc', | 355 'thread_pool_test.cc', |
| 356 'thread_test.cc', | 356 'thread_test.cc', |
| 357 'timer.cc', | 357 'timer.cc', |
| 358 'timer.h', | 358 'timer.h', |
| 359 'timer_scope.h', | |
| 360 'token.cc', | 359 'token.cc', |
| 361 'token.h', | 360 'token.h', |
| 362 'trace_buffer.cc', | 361 'trace_buffer.cc', |
| 363 'trace_buffer.h', | 362 'trace_buffer.h', |
| 364 'trace_buffer_test.cc', | 363 'trace_buffer_test.cc', |
| 365 'unicode.cc', | 364 'unicode.cc', |
| 366 'unicode.h', | 365 'unicode.h', |
| 367 'unicode_data.cc', | 366 'unicode_data.cc', |
| 368 'unicode_test.cc', | 367 'unicode_test.cc', |
| 369 'unit_test.cc', | 368 'unit_test.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 381 'visitor.h', | 380 'visitor.h', |
| 382 'vtune.cc', | 381 'vtune.cc', |
| 383 'vtune.h', | 382 'vtune.h', |
| 384 'weak_table.cc', | 383 'weak_table.cc', |
| 385 'weak_table.h', | 384 'weak_table.h', |
| 386 'zone.cc', | 385 'zone.cc', |
| 387 'zone.h', | 386 'zone.h', |
| 388 'zone_test.cc', | 387 'zone_test.cc', |
| 389 ], | 388 ], |
| 390 } | 389 } |
| OLD | NEW |