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

Side by Side Diff: Source/core/core_derived_sources.gyp

Issue 16838012: [ABANDONED] Implement Promises. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'css/makegrammar.pl', 621 'css/makegrammar.pl',
622 '--outputDir', 622 '--outputDir',
623 '<(SHARED_INTERMEDIATE_DIR)/webkit/', 623 '<(SHARED_INTERMEDIATE_DIR)/webkit/',
624 '--extraDefines', 624 '--extraDefines',
625 '<(feature_defines)', 625 '<(feature_defines)',
626 '--preprocessOnly', 626 '--preprocessOnly',
627 '<@(preprocessor)', 627 '<@(preprocessor)',
628 '<@(_inputs)', 628 '<@(_inputs)',
629 ], 629 ],
630 }, 630 },
631 {
632 'action_name': 'generatePromiseCustomScript',
abarth-chromium 2013/06/14 05:07:08 Can we do this with a rule rather than having a se
633 'inputs': [
634 'dom/Promise.js',
635 ],
636 'outputs': [
637 '<(SHARED_INTERMEDIATE_DIR)/webkit/PromiseCustomScript.h',
638 ],
639 'msvs_cygwin_shell': 0,
640 'action': [
641 '<(perl_exe)',
642 'inspector/xxd.pl',
643 'Promise_js',
644 '<@(_inputs)',
645 '<@(_outputs)'
646 ],
647 'message': 'Generating PromiseCustomScript.h from Promise.js',
648 },
649 {
650 'action_name': 'generatePromiseResolverCustomScript',
651 'inputs': [
652 'dom/PromiseResolver.js',
653 ],
654 'outputs': [
655 '<(SHARED_INTERMEDIATE_DIR)/webkit/PromiseResolverCustomScript.h',
656 ],
657 'msvs_cygwin_shell': 0,
658 'action': [
659 '<(perl_exe)',
660 'inspector/xxd.pl',
661 'PromiseResolver_js',
662 '<@(_inputs)',
663 '<@(_outputs)'
664 ],
665 'message': 'Generating PromiseResolverCustomScript.h from PromiseResol ver.js',
666 },
631 ], 667 ],
632 'rules': [ 668 'rules': [
633 { 669 {
634 'rule_name': 'bison', 670 'rule_name': 'bison',
635 'extension': 'y', 671 'extension': 'y',
636 'outputs': [ 672 'outputs': [
637 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).cpp', 673 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).cpp',
638 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).h' 674 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).h'
639 ], 675 ],
640 'action': [ 676 'action': [
(...skipping 20 matching lines...) Expand all
661 'scripts/make-hash-tools.pl', 697 'scripts/make-hash-tools.pl',
662 '<(SHARED_INTERMEDIATE_DIR)/webkit', 698 '<(SHARED_INTERMEDIATE_DIR)/webkit',
663 '<(RULE_INPUT_PATH)', 699 '<(RULE_INPUT_PATH)',
664 '<(gperf_exe)', 700 '<(gperf_exe)',
665 ], 701 ],
666 }, 702 },
667 ], 703 ],
668 }, 704 },
669 ], 705 ],
670 } 706 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698