| 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 'proccpuinfo.h', | 324 'proccpuinfo.h', |
| 325 'proccpuinfo.cc', | 325 'proccpuinfo.cc', |
| 326 'profiler.cc', | 326 'profiler.cc', |
| 327 'profiler.h', | 327 'profiler.h', |
| 328 'profiler_test.cc', | 328 'profiler_test.cc', |
| 329 'random.cc', | 329 'random.cc', |
| 330 'random.h', | 330 'random.h', |
| 331 'raw_object.cc', | 331 'raw_object.cc', |
| 332 'raw_object.h', | 332 'raw_object.h', |
| 333 'raw_object_snapshot.cc', | 333 'raw_object_snapshot.cc', |
| 334 'regexp.cc', |
| 335 'regexp.h', |
| 336 'regexp_assembler.cc', |
| 337 'regexp_assembler.h', |
| 338 'regexp_ast.cc', |
| 339 'regexp_ast.h', |
| 340 'regexp_parser.cc', |
| 341 'regexp_parser.h', |
| 334 'report.cc', | 342 'report.cc', |
| 335 'report.h', | 343 'report.h', |
| 336 'report_test.cc', | 344 'report_test.cc', |
| 337 'resolver.cc', | 345 'resolver.cc', |
| 338 'resolver.h', | 346 'resolver.h', |
| 339 'resolver_test.cc', | 347 'resolver_test.cc', |
| 340 'reusable_handles.h', | 348 'reusable_handles.h', |
| 341 'ring_buffer.h', | 349 'ring_buffer.h', |
| 342 'ring_buffer_test.cc', | 350 'ring_buffer_test.cc', |
| 343 'runtime_entry.h', | 351 'runtime_entry.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 'thread_test.cc', | 430 'thread_test.cc', |
| 423 'thread_win.cc', | 431 'thread_win.cc', |
| 424 'thread_win.h', | 432 'thread_win.h', |
| 425 'timer.cc', | 433 'timer.cc', |
| 426 'timer.h', | 434 'timer.h', |
| 427 'token.cc', | 435 'token.cc', |
| 428 'token.h', | 436 'token.h', |
| 429 'trace_buffer.cc', | 437 'trace_buffer.cc', |
| 430 'trace_buffer.h', | 438 'trace_buffer.h', |
| 431 'trace_buffer_test.cc', | 439 'trace_buffer_test.cc', |
| 440 'unibrow.cc', |
| 441 'unibrow.h', |
| 442 'unibrow-inl.h', |
| 432 'unicode.cc', | 443 'unicode.cc', |
| 433 'unicode.h', | 444 'unicode.h', |
| 434 'unicode_data.cc', | 445 'unicode_data.cc', |
| 435 'unicode_test.cc', | 446 'unicode_test.cc', |
| 436 'unit_test.cc', | 447 'unit_test.cc', |
| 437 'unit_test.h', | 448 'unit_test.h', |
| 438 'utils_test.cc', | 449 'utils_test.cc', |
| 439 'verifier.cc', | 450 'verifier.cc', |
| 440 'verifier.h', | 451 'verifier.h', |
| 441 'virtual_memory.cc', | 452 'virtual_memory.cc', |
| 442 'virtual_memory.h', | 453 'virtual_memory.h', |
| 443 'virtual_memory_android.cc', | 454 'virtual_memory_android.cc', |
| 444 'virtual_memory_linux.cc', | 455 'virtual_memory_linux.cc', |
| 445 'virtual_memory_macos.cc', | 456 'virtual_memory_macos.cc', |
| 446 'virtual_memory_test.cc', | 457 'virtual_memory_test.cc', |
| 447 'virtual_memory_win.cc', | 458 'virtual_memory_win.cc', |
| 448 'visitor.h', | 459 'visitor.h', |
| 449 'vtune.cc', | 460 'vtune.cc', |
| 450 'vtune.h', | 461 'vtune.h', |
| 451 'weak_code.cc', | 462 'weak_code.cc', |
| 452 'weak_code.h', | 463 'weak_code.h', |
| 453 'weak_table.cc', | 464 'weak_table.cc', |
| 454 'weak_table.h', | 465 'weak_table.h', |
| 455 'zone.cc', | 466 'zone.cc', |
| 456 'zone.h', | 467 'zone.h', |
| 457 'zone_test.cc', | 468 'zone_test.cc', |
| 458 ], | 469 ], |
| 459 } | 470 } |
| OLD | NEW |