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

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

Issue 1938343002: Generate a series of nested switch statements to parse CSSPrimitiveValue units. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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)/HTMLMetaElement.cpp', 723 '<(blink_core_output_dir)/HTMLMetaElement.cpp',
724 ], 724 ],
725 'action': [ 725 'action': [
726 'python', 726 'python',
727 '../build/scripts/make_token_matcher.py', 727 '../build/scripts/make_token_matcher.py',
728 '../core/html/HTMLMetaElement-in.cpp', 728 '../core/html/HTMLMetaElement-in.cpp',
729 '<(blink_core_output_dir)/HTMLMetaElement.cpp', 729 '<(blink_core_output_dir)/HTMLMetaElement.cpp',
730 ], 730 ],
731 }, 731 },
732 { 732 {
733 'action_name': 'CSSPrimitiveValueUnitTrie',
734 'inputs': [
735 '<@(scripts_for_in_files)',
736 '../build/scripts/make_css_primitive_value_unit_trie.py',
737 '../build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl',
738 'css/CSSPrimitiveValueUnits.in',
739 ],
740 'outputs': [
741 '<(blink_core_output_dir)/CSSPrimitiveValueUnitTrie.cpp',
742 ],
743 'action': [
744 'python',
745 '../build/scripts/make_css_primitive_value_unit_trie.py',
746 'css/CSSPrimitiveValueUnits.in',
747 '--output_dir',
748 '<(blink_core_output_dir)',
749 ],
750 },
751 {
733 'action_name': 'HTMLElementLookupTrie', 752 'action_name': 'HTMLElementLookupTrie',
734 'inputs': [ 753 'inputs': [
735 '<@(scripts_for_in_files)', 754 '<@(scripts_for_in_files)',
736 '../build/scripts/make_element_lookup_trie.py', 755 '../build/scripts/make_element_lookup_trie.py',
737 '../build/scripts/templates/ElementLookupTrie.cpp.tmpl', 756 '../build/scripts/templates/ElementLookupTrie.cpp.tmpl',
738 '../build/scripts/templates/ElementLookupTrie.h.tmpl', 757 '../build/scripts/templates/ElementLookupTrie.h.tmpl',
739 'html/HTMLTagNames.in', 758 'html/HTMLTagNames.in',
740 ], 759 ],
741 'outputs': [ 760 'outputs': [
742 '<(blink_core_output_dir)/HTMLElementLookupTrie.cpp', 761 '<(blink_core_output_dir)/HTMLElementLookupTrie.cpp',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 '../build/scripts/rule_bison.py', 804 '../build/scripts/rule_bison.py',
786 '<(RULE_INPUT_PATH)', 805 '<(RULE_INPUT_PATH)',
787 '<(blink_core_output_dir)', 806 '<(blink_core_output_dir)',
788 '<(bison_exe)', 807 '<(bison_exe)',
789 ], 808 ],
790 }, 809 },
791 ], 810 ],
792 }, 811 },
793 ], 812 ],
794 } 813 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698