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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 'page/Settings.in', | 64 'page/Settings.in', |
65 '--output_dir', | 65 '--output_dir', |
66 '<(SHARED_INTERMEDIATE_DIR)/blink', | 66 '<(SHARED_INTERMEDIATE_DIR)/blink', |
67 ], | 67 ], |
68 }, | 68 }, |
69 { | 69 { |
70 'action_name': 'InternalRuntimeFlags', | 70 'action_name': 'InternalRuntimeFlags', |
71 'inputs': [ | 71 'inputs': [ |
72 '<@(scripts_for_in_files)', | 72 '<@(scripts_for_in_files)', |
73 '../build/scripts/make_internal_runtime_flags.py', | 73 '../build/scripts/make_internal_runtime_flags.py', |
74 'page/RuntimeEnabledFeatures.in', | 74 '../platform/RuntimeEnabledFeatures.in', |
75 '../build/scripts/templates/InternalRuntimeFlags.h.tmpl', | 75 '../build/scripts/templates/InternalRuntimeFlags.h.tmpl', |
76 '../build/scripts/templates/InternalRuntimeFlags.idl.tmpl', | 76 '../build/scripts/templates/InternalRuntimeFlags.idl.tmpl', |
77 ], | 77 ], |
78 'outputs': [ | 78 'outputs': [ |
79 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl', | 79 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl', |
80 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.h', | 80 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.h', |
81 ], | 81 ], |
82 'action': [ | 82 'action': [ |
83 'python', | 83 'python', |
84 '../build/scripts/make_internal_runtime_flags.py', | 84 '../build/scripts/make_internal_runtime_flags.py', |
85 'page/RuntimeEnabledFeatures.in', | 85 '../platform/RuntimeEnabledFeatures.in', |
86 '--output_dir', | 86 '--output_dir', |
87 '<(SHARED_INTERMEDIATE_DIR)/blink', | 87 '<(SHARED_INTERMEDIATE_DIR)/blink', |
88 ], | 88 ], |
89 }, | 89 }, |
90 ] | 90 ] |
91 }, | 91 }, |
92 { | 92 { |
93 'target_name': 'make_core_derived_sources', | 93 'target_name': 'make_core_derived_sources', |
94 'type': 'none', | 94 'type': 'none', |
95 'hard_dependency': 1, | 95 'hard_dependency': 1, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 ], | 165 ], |
166 'action': [ | 166 'action': [ |
167 'python', | 167 'python', |
168 'html/parser/create-html-entity-table', | 168 'html/parser/create-html-entity-table', |
169 '-o', | 169 '-o', |
170 '<@(_outputs)', | 170 '<@(_outputs)', |
171 '<@(_inputs)' | 171 '<@(_inputs)' |
172 ], | 172 ], |
173 }, | 173 }, |
174 { | 174 { |
175 'action_name': 'RuntimeEnabledFeatures', | |
176 'inputs': [ | |
177 '<@(scripts_for_in_files)', | |
178 '../build/scripts/make_runtime_features.py', | |
179 'page/RuntimeEnabledFeatures.in', | |
180 '../build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl', | |
181 '../build/scripts/templates/RuntimeEnabledFeatures.h.tmpl', | |
182 ], | |
183 'outputs': [ | |
184 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.cpp', | |
185 '<(SHARED_INTERMEDIATE_DIR)/blink/RuntimeEnabledFeatures.h', | |
186 ], | |
187 'action': [ | |
188 'python', | |
189 '../build/scripts/make_runtime_features.py', | |
190 'page/RuntimeEnabledFeatures.in', | |
191 '--output_dir', | |
192 '<(SHARED_INTERMEDIATE_DIR)/blink', | |
193 ], | |
194 }, | |
195 { | |
196 'action_name': 'CSSPropertyNames', | 175 'action_name': 'CSSPropertyNames', |
197 'variables': { | 176 'variables': { |
198 'in_files': [ | 177 'in_files': [ |
199 'css/CSSPropertyNames.in', | 178 'css/CSSPropertyNames.in', |
200 'css/SVGCSSPropertyNames.in', | 179 'css/SVGCSSPropertyNames.in', |
201 ], | 180 ], |
202 }, | 181 }, |
203 'inputs': [ | 182 'inputs': [ |
204 '<@(scripts_for_in_files)', | 183 '<@(scripts_for_in_files)', |
205 '../build/scripts/make_css_property_names.py', | 184 '../build/scripts/make_css_property_names.py', |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 '<(RULE_INPUT_PATH)', | 613 '<(RULE_INPUT_PATH)', |
635 '<(SHARED_INTERMEDIATE_DIR)/blink', | 614 '<(SHARED_INTERMEDIATE_DIR)/blink', |
636 '<(bison_exe)', | 615 '<(bison_exe)', |
637 ], | 616 ], |
638 'msvs_cygwin_shell': 1, | 617 'msvs_cygwin_shell': 1, |
639 }, | 618 }, |
640 ], | 619 ], |
641 }, | 620 }, |
642 ], | 621 ], |
643 } | 622 } |
OLD | NEW |