OLD | NEW |
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'target_name': 'make_core_generated', | 132 'target_name': 'make_core_generated', |
133 'type': 'none', | 133 'type': 'none', |
134 'hard_dependency': 1, | 134 'hard_dependency': 1, |
135 'dependencies': [ | 135 'dependencies': [ |
136 'generated_testing_idls', | 136 'generated_testing_idls', |
137 'core_event_interfaces', | 137 'core_event_interfaces', |
138 '../config.gyp:config', | 138 '../config.gyp:config', |
139 ], | 139 ], |
140 'sources': [ | 140 'sources': [ |
141 # bison rule | 141 # bison rule |
142 'css/CSSGrammar.y', | 142 'css/parser/CSSGrammar.y', |
143 'xml/XPathGrammar.y', | 143 'xml/XPathGrammar.y', |
144 ], | 144 ], |
145 'actions': [ | 145 'actions': [ |
146 { | 146 { |
147 'action_name': 'generatePrivateScript', | 147 'action_name': 'generatePrivateScript', |
148 # FIXME: The implementation of Blink-in-JS is not yet mature. | 148 # FIXME: The implementation of Blink-in-JS is not yet mature. |
149 # You can use Blink-in-JS in your local experiment, but don't ship it. | 149 # You can use Blink-in-JS in your local experiment, but don't ship it. |
150 # crbug.com/341031 | 150 # crbug.com/341031 |
151 'private_script_files': [ | 151 'private_script_files': [ |
152 '../bindings/core/v8/PrivateScriptRunner.js', | 152 '../bindings/core/v8/PrivateScriptRunner.js', |
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 'xml/xmlattrs.in', | 741 'xml/xmlattrs.in', |
742 '--output_dir', | 742 '--output_dir', |
743 '<(blink_core_output_dir)', | 743 '<(blink_core_output_dir)', |
744 ], | 744 ], |
745 }, | 745 }, |
746 { | 746 { |
747 'action_name': 'MakeTokenMatcher', | 747 'action_name': 'MakeTokenMatcher', |
748 'inputs': [ | 748 'inputs': [ |
749 '<@(scripts_for_in_files)', | 749 '<@(scripts_for_in_files)', |
750 '../build/scripts/make_token_matcher.py', | 750 '../build/scripts/make_token_matcher.py', |
751 '../core/css/CSSTokenizer-in.cpp', | 751 '../core/css/parser/CSSTokenizer-in.cpp', |
752 ], | 752 ], |
753 'outputs': [ | 753 'outputs': [ |
754 '<(blink_core_output_dir)/CSSTokenizer.cpp', | 754 '<(blink_core_output_dir)/CSSTokenizer.cpp', |
755 ], | 755 ], |
756 'action': [ | 756 'action': [ |
757 'python', | 757 'python', |
758 '../build/scripts/make_token_matcher.py', | 758 '../build/scripts/make_token_matcher.py', |
759 '../core/css/CSSTokenizer-in.cpp', | 759 '../core/css/parser/CSSTokenizer-in.cpp', |
760 '<(blink_core_output_dir)/CSSTokenizer.cpp', | 760 '<(blink_core_output_dir)/CSSTokenizer.cpp', |
761 ], | 761 ], |
762 }, | 762 }, |
763 { | 763 { |
764 'action_name': 'MakeParser', | 764 'action_name': 'MakeParser', |
765 'inputs': [ | 765 'inputs': [ |
766 '<@(scripts_for_in_files)', | 766 '<@(scripts_for_in_files)', |
767 '../build/scripts/make_token_matcher.py', | 767 '../build/scripts/make_token_matcher.py', |
768 '../core/css/parser/BisonCSSParser-in.cpp', | 768 '../core/css/parser/BisonCSSParser-in.cpp', |
769 ], | 769 ], |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 '../build/scripts/rule_bison.py', | 829 '../build/scripts/rule_bison.py', |
830 '<(RULE_INPUT_PATH)', | 830 '<(RULE_INPUT_PATH)', |
831 '<(blink_core_output_dir)', | 831 '<(blink_core_output_dir)', |
832 '<(bison_exe)', | 832 '<(bison_exe)', |
833 ], | 833 ], |
834 }, | 834 }, |
835 ], | 835 ], |
836 }, | 836 }, |
837 ], | 837 ], |
838 } | 838 } |
OLD | NEW |