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