Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(572)

Side by Side Diff: runtime/vm/vm_sources.gypi

Issue 539153002: Port and integrate the irregexp engine from V8 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Port remaining V8 regexp tests and fix exposed bugs. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 333 'regexp.cc',
334 'regexp.h', 334 'regexp.h',
335 'regexp_assembler.cc',
336 'regexp_assembler.h',
335 'regexp_ast.cc', 337 'regexp_ast.cc',
336 'regexp_ast.h', 338 'regexp_ast.h',
337 'regexp_parser.cc', 339 'regexp_parser.cc',
338 'regexp_parser.h', 340 'regexp_parser.h',
339 'report.cc', 341 'report.cc',
340 'report.h', 342 'report.h',
341 'report_test.cc', 343 'report_test.cc',
342 'resolver.cc', 344 'resolver.cc',
343 'resolver.h', 345 'resolver.h',
344 'resolver_test.cc', 346 'resolver_test.cc',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 'thread_test.cc', 429 'thread_test.cc',
428 'thread_win.cc', 430 'thread_win.cc',
429 'thread_win.h', 431 'thread_win.h',
430 'timer.cc', 432 'timer.cc',
431 'timer.h', 433 'timer.h',
432 'token.cc', 434 'token.cc',
433 'token.h', 435 'token.h',
434 'trace_buffer.cc', 436 'trace_buffer.cc',
435 'trace_buffer.h', 437 'trace_buffer.h',
436 'trace_buffer_test.cc', 438 'trace_buffer_test.cc',
439 'unibrow.cc',
440 'unibrow.h',
441 'unibrow-inl.h',
437 'unicode.cc', 442 'unicode.cc',
438 'unicode.h', 443 'unicode.h',
439 'unicode_data.cc', 444 'unicode_data.cc',
440 'unicode_test.cc', 445 'unicode_test.cc',
441 'unit_test.cc', 446 'unit_test.cc',
442 'unit_test.h', 447 'unit_test.h',
443 'utils_test.cc', 448 'utils_test.cc',
444 'verifier.cc', 449 'verifier.cc',
445 'verifier.h', 450 'verifier.h',
446 'virtual_memory.cc', 451 'virtual_memory.cc',
447 'virtual_memory.h', 452 'virtual_memory.h',
448 'virtual_memory_android.cc', 453 'virtual_memory_android.cc',
449 'virtual_memory_linux.cc', 454 'virtual_memory_linux.cc',
450 'virtual_memory_macos.cc', 455 'virtual_memory_macos.cc',
451 'virtual_memory_test.cc', 456 'virtual_memory_test.cc',
452 'virtual_memory_win.cc', 457 'virtual_memory_win.cc',
453 'visitor.h', 458 'visitor.h',
454 'vtune.cc', 459 'vtune.cc',
455 'vtune.h', 460 'vtune.h',
456 'weak_table.cc', 461 'weak_table.cc',
457 'weak_table.h', 462 'weak_table.h',
458 'zone.cc', 463 'zone.cc',
459 'zone.h', 464 'zone.h',
460 'zone_test.cc', 465 'zone_test.cc',
461 ], 466 ],
462 } 467 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698