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

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

Issue 14784010: Third step towards loading core library scripts directly from the sources (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 { 5 {
6 'variables': { 6 'variables': {
7 'gen_source_dir': '<(LIB_DIR)', 7 'gen_source_dir': '<(LIB_DIR)',
8 'libgen_in_cc_file': '../lib/libgen_in.cc', 8 'libgen_in_cc_file': '../lib/libgen_in.cc',
9 'builtin_in_cc_file': '../bin/builtin_in.cc', 9 'builtin_in_cc_file': '../bin/builtin_in.cc',
10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 # Exclude all .[cc|h] files. 267 # Exclude all .[cc|h] files.
268 # This is only here for reference. Excludes happen after 268 # This is only here for reference. Excludes happen after
269 # variable expansion, so the script has to do its own 269 # variable expansion, so the script has to do its own
270 # exclude processing of the sources being passed. 270 # exclude processing of the sources being passed.
271 ['exclude', '\\.cc|h$'], 271 ['exclude', '\\.cc|h$'],
272 ], 272 ],
273 'actions': [ 273 'actions': [
274 { 274 {
275 'action_name': 'generate_corelib_patch_cc', 275 'action_name': 'generate_corelib_patch_cc',
276 'inputs': [ 276 'inputs': [
277 '../tools/create_string_literal.py', 277 '../tools/gen_library_src_paths.py',
278 '<(builtin_in_cc_file)', 278 '<(libgen_in_cc_file)',
279 '<@(_sources)', 279 '<@(_sources)',
280 ], 280 ],
281 'outputs': [ 281 'outputs': [
282 '<(corelib_patch_cc_file)', 282 '<(corelib_patch_cc_file)',
283 ], 283 ],
284 'action': [ 284 'action': [
285 'python', 285 'python',
286 'tools/create_string_literal.py', 286 'tools/gen_library_src_paths.py',
287 '--output', '<(corelib_patch_cc_file)', 287 '--output', '<(corelib_patch_cc_file)',
288 '--input_cc', '<(builtin_in_cc_file)', 288 '--input_cc', '<(libgen_in_cc_file)',
289 '--include', 'vm/bootstrap.h', 289 '--include', 'vm/bootstrap.h',
290 '--var_name', 'dart::Bootstrap::corelib_patch_', 290 '--var_name', 'dart::Bootstrap::corelib_patch_paths_',
291 '--library_name', 'dart:corelib',
291 '<@(_sources)', 292 '<@(_sources)',
292 ], 293 ],
293 'message': 'Generating ''<(corelib_patch_cc_file)'' file.' 294 'message': 'Generating ''<(corelib_patch_cc_file)'' file.'
294 }, 295 },
295 ] 296 ]
296 }, 297 },
297 { 298 {
298 'target_name': 'generate_collection_cc_file', 299 'target_name': 'generate_collection_cc_file',
299 'type': 'none', 300 'type': 'none',
300 'toolsets':['host', 'target'], 301 'toolsets':['host', 'target'],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 # Exclude all .[cc|h] files. 347 # Exclude all .[cc|h] files.
347 # This is only here for reference. Excludes happen after 348 # This is only here for reference. Excludes happen after
348 # variable expansion, so the script has to do its own 349 # variable expansion, so the script has to do its own
349 # exclude processing of the sources being passed. 350 # exclude processing of the sources being passed.
350 ['exclude', '\\.cc|h$'], 351 ['exclude', '\\.cc|h$'],
351 ], 352 ],
352 'actions': [ 353 'actions': [
353 { 354 {
354 'action_name': 'generate_collection_dev_patch_cc', 355 'action_name': 'generate_collection_dev_patch_cc',
355 'inputs': [ 356 'inputs': [
356 '../tools/create_string_literal.py', 357 '../tools/gen_library_src_paths.py',
357 '<(builtin_in_cc_file)', 358 '<(libgen_in_cc_file)',
358 '<@(_sources)', 359 '<@(_sources)',
359 ], 360 ],
360 'outputs': [ 361 'outputs': [
361 '<(collection_dev_patch_cc_file)', 362 '<(collection_dev_patch_cc_file)',
362 ], 363 ],
363 'action': [ 364 'action': [
364 'python', 365 'python',
365 'tools/create_string_literal.py', 366 'tools/gen_library_src_paths.py',
366 '--output', '<(collection_dev_patch_cc_file)', 367 '--output', '<(collection_dev_patch_cc_file)',
367 '--input_cc', '<(builtin_in_cc_file)', 368 '--input_cc', '<(libgen_in_cc_file)',
368 '--include', 'vm/bootstrap.h', 369 '--include', 'vm/bootstrap.h',
369 '--var_name', 'dart::Bootstrap::collection_dev_patch_', 370 '--var_name', 'dart::Bootstrap::collection_dev_patch_paths_',
371 '--library_name', 'dart:_collection-dev',
370 '<@(_sources)', 372 '<@(_sources)',
371 ], 373 ],
372 'message': 'Generating ''<(collection_dev_patch_cc_file)'' file.' 374 'message': 'Generating ''<(collection_dev_patch_cc_file)'' file.'
373 }, 375 },
374 ] 376 ]
375 }, 377 },
376 { 378 {
377 'target_name': 'generate_collection_dev_cc_file', 379 'target_name': 'generate_collection_dev_cc_file',
378 'type': 'none', 380 'type': 'none',
379 'toolsets':['host', 'target'], 381 'toolsets':['host', 'target'],
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 # Exclude all .[cc|h] files. 500 # Exclude all .[cc|h] files.
499 # This is only here for reference. Excludes happen after 501 # This is only here for reference. Excludes happen after
500 # variable expansion, so the script has to do its own 502 # variable expansion, so the script has to do its own
501 # exclude processing of the sources being passed. 503 # exclude processing of the sources being passed.
502 ['exclude', '\\.cc|h$'], 504 ['exclude', '\\.cc|h$'],
503 ], 505 ],
504 'actions': [ 506 'actions': [
505 { 507 {
506 'action_name': 'generate_math_patch_cc', 508 'action_name': 'generate_math_patch_cc',
507 'inputs': [ 509 'inputs': [
508 '../tools/create_string_literal.py', 510 '../tools/gen_library_src_paths.py',
509 '<(builtin_in_cc_file)', 511 '<(libgen_in_cc_file)',
510 '<@(_sources)', 512 '<@(_sources)',
511 ], 513 ],
512 'outputs': [ 514 'outputs': [
513 '<(math_patch_cc_file)', 515 '<(math_patch_cc_file)',
514 ], 516 ],
515 'action': [ 517 'action': [
516 'python', 518 'python',
517 'tools/create_string_literal.py', 519 'tools/gen_library_src_paths.py',
518 '--output', '<(math_patch_cc_file)', 520 '--output', '<(math_patch_cc_file)',
519 '--input_cc', '<(builtin_in_cc_file)', 521 '--input_cc', '<(libgen_in_cc_file)',
520 '--include', 'vm/bootstrap.h', 522 '--include', 'vm/bootstrap.h',
521 '--var_name', 'dart::Bootstrap::math_patch_', 523 '--var_name', 'dart::Bootstrap::math_patch_paths_',
524 '--library_name', 'dart:math',
522 '<@(_sources)', 525 '<@(_sources)',
523 ], 526 ],
524 'message': 'Generating ''<(math_patch_cc_file)'' file.' 527 'message': 'Generating ''<(math_patch_cc_file)'' file.'
525 }, 528 },
526 ] 529 ]
527 }, 530 },
528 { 531 {
529 'target_name': 'generate_mirrors_cc_file', 532 'target_name': 'generate_mirrors_cc_file',
530 'type': 'none', 533 'type': 'none',
531 'toolsets':['host', 'target'], 534 'toolsets':['host', 'target'],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 # Exclude all .[cc|h] files. 580 # Exclude all .[cc|h] files.
578 # This is only here for reference. Excludes happen after 581 # This is only here for reference. Excludes happen after
579 # variable expansion, so the script has to do its own 582 # variable expansion, so the script has to do its own
580 # exclude processing of the sources being passed. 583 # exclude processing of the sources being passed.
581 ['exclude', '\\.cc|h$'], 584 ['exclude', '\\.cc|h$'],
582 ], 585 ],
583 'actions': [ 586 'actions': [
584 { 587 {
585 'action_name': 'generate_mirrors_patch_cc', 588 'action_name': 'generate_mirrors_patch_cc',
586 'inputs': [ 589 'inputs': [
587 '../tools/create_string_literal.py', 590 '../tools/gen_library_src_paths.py',
588 '<(builtin_in_cc_file)', 591 '<(libgen_in_cc_file)',
589 '<@(_sources)', 592 '<@(_sources)',
590 ], 593 ],
591 'outputs': [ 594 'outputs': [
592 '<(mirrors_patch_cc_file)', 595 '<(mirrors_patch_cc_file)',
593 ], 596 ],
594 'action': [ 597 'action': [
595 'python', 598 'python',
596 'tools/create_string_literal.py', 599 'tools/gen_library_src_paths.py',
597 '--output', '<(mirrors_patch_cc_file)', 600 '--output', '<(mirrors_patch_cc_file)',
598 '--input_cc', '<(builtin_in_cc_file)', 601 '--input_cc', '<(libgen_in_cc_file)',
599 '--include', 'vm/bootstrap.h', 602 '--include', 'vm/bootstrap.h',
600 '--var_name', 'dart::Bootstrap::mirrors_patch_', 603 '--var_name', 'dart::Bootstrap::mirrors_patch_paths_',
604 '--library_name', 'dart:mirrors',
601 '<@(_sources)', 605 '<@(_sources)',
602 ], 606 ],
603 'message': 'Generating ''<(mirrors_patch_cc_file)'' file.' 607 'message': 'Generating ''<(mirrors_patch_cc_file)'' file.'
604 }, 608 },
605 ] 609 ]
606 }, 610 },
607 { 611 {
608 'target_name': 'generate_isolate_cc_file', 612 'target_name': 'generate_isolate_cc_file',
609 'type': 'none', 613 'type': 'none',
610 'toolsets':['host', 'target'], 614 'toolsets':['host', 'target'],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 # Exclude all .[cc|h] files. 660 # Exclude all .[cc|h] files.
657 # This is only here for reference. Excludes happen after 661 # This is only here for reference. Excludes happen after
658 # variable expansion, so the script has to do its own 662 # variable expansion, so the script has to do its own
659 # exclude processing of the sources being passed. 663 # exclude processing of the sources being passed.
660 ['exclude', '\\.cc|h$'], 664 ['exclude', '\\.cc|h$'],
661 ], 665 ],
662 'actions': [ 666 'actions': [
663 { 667 {
664 'action_name': 'generate_async_patch_cc', 668 'action_name': 'generate_async_patch_cc',
665 'inputs': [ 669 'inputs': [
666 '../tools/create_string_literal.py', 670 '../tools/gen_library_src_paths.py',
667 '<(builtin_in_cc_file)', 671 '<(libgen_in_cc_file)',
668 '<@(_sources)', 672 '<@(_sources)',
669 ], 673 ],
670 'outputs': [ 674 'outputs': [
671 '<(async_patch_cc_file)', 675 '<(async_patch_cc_file)',
672 ], 676 ],
673 'action': [ 677 'action': [
674 'python', 678 'python',
675 'tools/create_string_literal.py', 679 'tools/gen_library_src_paths.py',
676 '--output', '<(async_patch_cc_file)', 680 '--output', '<(async_patch_cc_file)',
677 '--input_cc', '<(builtin_in_cc_file)', 681 '--input_cc', '<(libgen_in_cc_file)',
678 '--include', 'vm/bootstrap.h', 682 '--include', 'vm/bootstrap.h',
679 '--var_name', 'dart::Bootstrap::async_patch_', 683 '--var_name', 'dart::Bootstrap::async_patch_paths_',
684 '--library_name', 'dart:async',
680 '<@(_sources)', 685 '<@(_sources)',
681 ], 686 ],
682 'message': 'Generating ''<(async_patch_cc_file)'' file.' 687 'message': 'Generating ''<(async_patch_cc_file)'' file.'
683 }, 688 },
684 ] 689 ]
685 }, 690 },
686 { 691 {
687 'target_name': 'generate_collection_patch_cc_file', 692 'target_name': 'generate_collection_patch_cc_file',
688 'type': 'none', 693 'type': 'none',
689 'toolsets':['host', 'target'], 694 'toolsets':['host', 'target'],
690 'includes': [ 695 'includes': [
691 # Load the runtime implementation sources. 696 # Load the runtime implementation sources.
692 '../lib/collection_sources.gypi', 697 '../lib/collection_sources.gypi',
693 ], 698 ],
694 'sources/': [ 699 'sources/': [
695 # Exclude all .[cc|h] files. 700 # Exclude all .[cc|h] files.
696 # This is only here for reference. Excludes happen after 701 # This is only here for reference. Excludes happen after
697 # variable expansion, so the script has to do its own 702 # variable expansion, so the script has to do its own
698 # exclude processing of the sources being passed. 703 # exclude processing of the sources being passed.
699 ['exclude', '\\.cc|h$'], 704 ['exclude', '\\.cc|h$'],
700 ], 705 ],
701 'actions': [ 706 'actions': [
702 { 707 {
703 'action_name': 'generate_collection_patch_cc', 708 'action_name': 'generate_collection_patch_cc',
704 'inputs': [ 709 'inputs': [
705 '../tools/create_string_literal.py', 710 '../tools/gen_library_src_paths.py',
706 '<(builtin_in_cc_file)', 711 '<(libgen_in_cc_file)',
707 '<@(_sources)', 712 '<@(_sources)',
708 ], 713 ],
709 'outputs': [ 714 'outputs': [
710 '<(collection_patch_cc_file)', 715 '<(collection_patch_cc_file)',
711 ], 716 ],
712 'action': [ 717 'action': [
713 'python', 718 'python',
714 'tools/create_string_literal.py', 719 'tools/gen_library_src_paths.py',
715 '--output', '<(collection_patch_cc_file)', 720 '--output', '<(collection_patch_cc_file)',
716 '--input_cc', '<(builtin_in_cc_file)', 721 '--input_cc', '<(libgen_in_cc_file)',
717 '--include', 'vm/bootstrap.h', 722 '--include', 'vm/bootstrap.h',
718 '--var_name', 'dart::Bootstrap::collection_patch_', 723 '--var_name', 'dart::Bootstrap::collection_patch_paths_',
724 '--library_name', 'dart:collection',
719 '<@(_sources)', 725 '<@(_sources)',
720 ], 726 ],
721 'message': 'Generating ''<(collection_patch_cc_file)'' file.' 727 'message': 'Generating ''<(collection_patch_cc_file)'' file.'
722 }, 728 },
723 ] 729 ]
724 }, 730 },
725 { 731 {
726 'target_name': 'generate_isolate_patch_cc_file', 732 'target_name': 'generate_isolate_patch_cc_file',
727 'type': 'none', 733 'type': 'none',
728 'toolsets':['host', 'target'], 734 'toolsets':['host', 'target'],
729 'includes': [ 735 'includes': [
730 # Load the runtime implementation sources. 736 # Load the runtime implementation sources.
731 '../lib/isolate_sources.gypi', 737 '../lib/isolate_sources.gypi',
732 ], 738 ],
733 'sources/': [ 739 'sources/': [
734 # Exclude all .[cc|h] files. 740 # Exclude all .[cc|h] files.
735 # This is only here for reference. Excludes happen after 741 # This is only here for reference. Excludes happen after
736 # variable expansion, so the script has to do its own 742 # variable expansion, so the script has to do its own
737 # exclude processing of the sources being passed. 743 # exclude processing of the sources being passed.
738 ['exclude', '\\.cc|h$'], 744 ['exclude', '\\.cc|h$'],
739 ], 745 ],
740 'actions': [ 746 'actions': [
741 { 747 {
742 'action_name': 'generate_isolate_patch_cc', 748 'action_name': 'generate_isolate_patch_cc',
743 'inputs': [ 749 'inputs': [
744 '../tools/create_string_literal.py', 750 '../tools/gen_library_src_paths.py',
745 '<(builtin_in_cc_file)', 751 '<(libgen_in_cc_file)',
746 '<@(_sources)', 752 '<@(_sources)',
747 ], 753 ],
748 'outputs': [ 754 'outputs': [
749 '<(isolate_patch_cc_file)', 755 '<(isolate_patch_cc_file)',
750 ], 756 ],
751 'action': [ 757 'action': [
752 'python', 758 'python',
753 'tools/create_string_literal.py', 759 'tools/gen_library_src_paths.py',
754 '--output', '<(isolate_patch_cc_file)', 760 '--output', '<(isolate_patch_cc_file)',
755 '--input_cc', '<(builtin_in_cc_file)', 761 '--input_cc', '<(libgen_in_cc_file)',
756 '--include', 'vm/bootstrap.h', 762 '--include', 'vm/bootstrap.h',
757 '--var_name', 'dart::Bootstrap::isolate_patch_', 763 '--var_name', 'dart::Bootstrap::isolate_patch_paths_',
764 '--library_name', 'dart:isolate',
758 '<@(_sources)', 765 '<@(_sources)',
759 ], 766 ],
760 'message': 'Generating ''<(isolate_patch_cc_file)'' file.' 767 'message': 'Generating ''<(isolate_patch_cc_file)'' file.'
761 }, 768 },
762 ] 769 ]
763 }, 770 },
764 { 771 {
765 'target_name': 'generate_json_cc_file', 772 'target_name': 'generate_json_cc_file',
766 'type': 'none', 773 'type': 'none',
767 'toolsets':['host', 'target'], 774 'toolsets':['host', 'target'],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 # Exclude all .[cc|h] files. 813 # Exclude all .[cc|h] files.
807 # This is only here for reference. Excludes happen after 814 # This is only here for reference. Excludes happen after
808 # variable expansion, so the script has to do its own 815 # variable expansion, so the script has to do its own
809 # exclude processing of the sources being passed. 816 # exclude processing of the sources being passed.
810 ['exclude', '\\.cc|h$'], 817 ['exclude', '\\.cc|h$'],
811 ], 818 ],
812 'actions': [ 819 'actions': [
813 { 820 {
814 'action_name': 'generate_json_patch_cc', 821 'action_name': 'generate_json_patch_cc',
815 'inputs': [ 822 'inputs': [
816 '../tools/create_string_literal.py', 823 '../tools/gen_library_src_paths.py',
817 '<(builtin_in_cc_file)', 824 '<(libgen_in_cc_file)',
818 '<@(_sources)', 825 '<@(_sources)',
819 ], 826 ],
820 'outputs': [ 827 'outputs': [
821 '<(json_patch_cc_file)', 828 '<(json_patch_cc_file)',
822 ], 829 ],
823 'action': [ 830 'action': [
824 'python', 831 'python',
825 'tools/create_string_literal.py', 832 'tools/gen_library_src_paths.py',
826 '--output', '<(json_patch_cc_file)', 833 '--output', '<(json_patch_cc_file)',
827 '--input_cc', '<(builtin_in_cc_file)', 834 '--input_cc', '<(libgen_in_cc_file)',
828 '--include', 'vm/bootstrap.h', 835 '--include', 'vm/bootstrap.h',
829 '--var_name', 'dart::Bootstrap::json_patch_', 836 '--var_name', 'dart::Bootstrap::json_patch_paths_',
837 '--library_name', 'dart:json',
830 '<@(_sources)', 838 '<@(_sources)',
831 ], 839 ],
832 'message': 'Generating ''<(json_patch_cc_file)'' file.' 840 'message': 'Generating ''<(json_patch_cc_file)'' file.'
833 }, 841 },
834 ] 842 ]
835 }, 843 },
836 { 844 {
837 'target_name': 'generate_typed_data_cc_file', 845 'target_name': 'generate_typed_data_cc_file',
838 'type': 'none', 846 'type': 'none',
839 'toolsets':['host', 'target'], 847 'toolsets':['host', 'target'],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 # Exclude all .[cc|h] files. 893 # Exclude all .[cc|h] files.
886 # This is only here for reference. Excludes happen after 894 # This is only here for reference. Excludes happen after
887 # variable expansion, so the script has to do its own 895 # variable expansion, so the script has to do its own
888 # exclude processing of the sources being passed. 896 # exclude processing of the sources being passed.
889 ['exclude', '\\.cc|h$'], 897 ['exclude', '\\.cc|h$'],
890 ], 898 ],
891 'actions': [ 899 'actions': [
892 { 900 {
893 'action_name': 'generate_typed_data_patch_cc', 901 'action_name': 'generate_typed_data_patch_cc',
894 'inputs': [ 902 'inputs': [
895 '../tools/create_string_literal.py', 903 '../tools/gen_library_src_paths.py',
896 '<(builtin_in_cc_file)', 904 '<(libgen_in_cc_file)',
897 '<@(_sources)', 905 '<@(_sources)',
898 ], 906 ],
899 'outputs': [ 907 'outputs': [
900 '<(typed_data_patch_cc_file)', 908 '<(typed_data_patch_cc_file)',
901 ], 909 ],
902 'action': [ 910 'action': [
903 'python', 911 'python',
904 'tools/create_string_literal.py', 912 'tools/gen_library_src_paths.py',
905 '--output', '<(typed_data_patch_cc_file)', 913 '--output', '<(typed_data_patch_cc_file)',
906 '--input_cc', '<(builtin_in_cc_file)', 914 '--input_cc', '<(libgen_in_cc_file)',
907 '--include', 'vm/bootstrap.h', 915 '--include', 'vm/bootstrap.h',
908 '--var_name', 'dart::Bootstrap::typed_data_patch_', 916 '--var_name', 'dart::Bootstrap::typed_data_patch_paths_',
917 '--library_name', 'dart:typed_data',
909 '<@(_sources)', 918 '<@(_sources)',
910 ], 919 ],
911 'message': 'Generating ''<(typed_data_patch_cc_file)'' file.' 920 'message': 'Generating ''<(typed_data_patch_cc_file)'' file.'
912 }, 921 },
913 ] 922 ]
914 }, 923 },
915 { 924 {
916 'target_name': 'generate_uri_cc_file', 925 'target_name': 'generate_uri_cc_file',
917 'type': 'none', 926 'type': 'none',
918 'toolsets':['host', 'target'], 927 'toolsets':['host', 'target'],
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 '--include', 'INTENTIONALLY_LEFT_BLANK', 1010 '--include', 'INTENTIONALLY_LEFT_BLANK',
1002 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', 1011 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO',
1003 '<(snapshot_test_dart_file)', 1012 '<(snapshot_test_dart_file)',
1004 ], 1013 ],
1005 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 1014 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
1006 }, 1015 },
1007 ] 1016 ]
1008 }, 1017 },
1009 ] 1018 ]
1010 } 1019 }
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698