| 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', | |
| 342 'report.cc', | 334 'report.cc', |
| 343 'report.h', | 335 'report.h', |
| 344 'report_test.cc', | 336 'report_test.cc', |
| 345 'resolver.cc', | 337 'resolver.cc', |
| 346 'resolver.h', | 338 'resolver.h', |
| 347 'resolver_test.cc', | 339 'resolver_test.cc', |
| 348 'reusable_handles.h', | 340 'reusable_handles.h', |
| 349 'ring_buffer.h', | 341 'ring_buffer.h', |
| 350 'ring_buffer_test.cc', | 342 'ring_buffer_test.cc', |
| 351 'runtime_entry.h', | 343 'runtime_entry.h', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 'thread_test.cc', | 422 'thread_test.cc', |
| 431 'thread_win.cc', | 423 'thread_win.cc', |
| 432 'thread_win.h', | 424 'thread_win.h', |
| 433 'timer.cc', | 425 'timer.cc', |
| 434 'timer.h', | 426 'timer.h', |
| 435 'token.cc', | 427 'token.cc', |
| 436 'token.h', | 428 'token.h', |
| 437 'trace_buffer.cc', | 429 'trace_buffer.cc', |
| 438 'trace_buffer.h', | 430 'trace_buffer.h', |
| 439 'trace_buffer_test.cc', | 431 'trace_buffer_test.cc', |
| 440 'unibrow.cc', | |
| 441 'unibrow.h', | |
| 442 'unibrow-inl.h', | |
| 443 'unicode.cc', | 432 'unicode.cc', |
| 444 'unicode.h', | 433 'unicode.h', |
| 445 'unicode_data.cc', | 434 'unicode_data.cc', |
| 446 'unicode_test.cc', | 435 'unicode_test.cc', |
| 447 'unit_test.cc', | 436 'unit_test.cc', |
| 448 'unit_test.h', | 437 'unit_test.h', |
| 449 'utils_test.cc', | 438 'utils_test.cc', |
| 450 'verified_memory.cc', | 439 'verified_memory.cc', |
| 451 'verified_memory.h', | 440 'verified_memory.h', |
| 452 'verified_memory_test.cc', | 441 'verified_memory_test.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 464 'vtune.h', | 453 'vtune.h', |
| 465 'weak_code.cc', | 454 'weak_code.cc', |
| 466 'weak_code.h', | 455 'weak_code.h', |
| 467 'weak_table.cc', | 456 'weak_table.cc', |
| 468 'weak_table.h', | 457 'weak_table.h', |
| 469 'zone.cc', | 458 'zone.cc', |
| 470 'zone.h', | 459 'zone.h', |
| 471 'zone_test.cc', | 460 'zone_test.cc', |
| 472 ], | 461 ], |
| 473 } | 462 } |
| OLD | NEW |