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 'verified_memory.cc', | 450 'verified_memory.cc', |
440 'verified_memory.h', | 451 'verified_memory.h', |
441 'verified_memory_test.cc', | 452 'verified_memory_test.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
453 'vtune.h', | 464 'vtune.h', |
454 'weak_code.cc', | 465 'weak_code.cc', |
455 'weak_code.h', | 466 'weak_code.h', |
456 'weak_table.cc', | 467 'weak_table.cc', |
457 'weak_table.h', | 468 'weak_table.h', |
458 'zone.cc', | 469 'zone.cc', |
459 'zone.h', | 470 'zone.h', |
460 'zone_test.cc', | 471 'zone_test.cc', |
461 ], | 472 ], |
462 } | 473 } |
OLD | NEW |