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

Side by Side Diff: third_party/WebKit/Source/core/core_generated.gyp

Issue 1538663003: Add code generation for ExperimentalFeatures class from RuntimeEnabledFeatures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix broken GN build dependency Created 4 years, 12 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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 '<(blink_core_output_dir)/HTMLElementLookupTrie.h', 723 '<(blink_core_output_dir)/HTMLElementLookupTrie.h',
724 ], 724 ],
725 'action': [ 725 'action': [
726 'python', 726 'python',
727 '../build/scripts/make_element_lookup_trie.py', 727 '../build/scripts/make_element_lookup_trie.py',
728 'html/HTMLTagNames.in', 728 'html/HTMLTagNames.in',
729 '--output_dir', 729 '--output_dir',
730 '<(blink_core_output_dir)', 730 '<(blink_core_output_dir)',
731 ], 731 ],
732 }, 732 },
733 {
734 'action_name': 'ExperimentalFeatures',
735 'inputs': [
736 '<@(scripts_for_in_files)',
737 '../build/scripts/make_experimental_features.py',
738 '../platform/RuntimeEnabledFeatures.in',
739 '../build/scripts/templates/ExperimentalFeatures.cpp.tmpl',
740 '../build/scripts/templates/ExperimentalFeatures.h.tmpl',
741 ],
742 'outputs': [
743 '<(blink_core_output_dir)/experiments/ExperimentalFeatures.cpp',
744 '<(blink_core_output_dir)/experiments/ExperimentalFeatures.h',
745 ],
746 'action': [
747 'python',
748 '../build/scripts/make_experimental_features.py',
749 '../platform/RuntimeEnabledFeatures.in',
750 '--output_dir',
751 '<(blink_core_output_dir)/experiments',
752 ],
753 },
733 ], 754 ],
734 'rules': [ 755 'rules': [
735 { 756 {
736 'rule_name': 'bison', 757 'rule_name': 'bison',
737 'extension': 'y', 758 'extension': 'y',
738 'outputs': [ 759 'outputs': [
739 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp', 760 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp',
740 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h' 761 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h'
741 ], 762 ],
742 'action': [ 763 'action': [
743 'python', 764 'python',
744 '../build/scripts/rule_bison.py', 765 '../build/scripts/rule_bison.py',
745 '<(RULE_INPUT_PATH)', 766 '<(RULE_INPUT_PATH)',
746 '<(blink_core_output_dir)', 767 '<(blink_core_output_dir)',
747 '<(bison_exe)', 768 '<(bison_exe)',
748 ], 769 ],
749 }, 770 },
750 ], 771 ],
751 }, 772 },
752 ], 773 ],
753 } 774 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698