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

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

Issue 171383002: A thread-safe Media Query Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Generate strings with make_names Created 6 years, 9 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'python', 173 'python',
174 '../build/scripts/make_css_property_names.py', 174 '../build/scripts/make_css_property_names.py',
175 '<@(in_files)', 175 '<@(in_files)',
176 '--output_dir', 176 '--output_dir',
177 '<(SHARED_INTERMEDIATE_DIR)/blink', 177 '<(SHARED_INTERMEDIATE_DIR)/blink',
178 '--gperf', '<(gperf_exe)', 178 '--gperf', '<(gperf_exe)',
179 '--defines', '<(feature_defines)', 179 '--defines', '<(feature_defines)',
180 ], 180 ],
181 }, 181 },
182 { 182 {
183 'action_name': 'MediaFeatureNames',
184 'variables': {
185 'in_files': [
186 'css/MediaFeatureNames.in',
187 ],
188 },
189 'inputs': [
190 '<@(scripts_for_in_files)',
191 '../build/scripts/make_media_feature_names.py',
192 '<@(in_files)'
193 ],
194 'outputs': [
195 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.cpp',
196 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaFeatureNames.h',
197 ],
198 'action': [
199 'python',
200 '../build/scripts/make_media_feature_names.py',
201 '<@(in_files)',
202 '--output_dir',
203 '<(SHARED_INTERMEDIATE_DIR)/blink',
204 '--gperf', '<(gperf_exe)',
abarth-chromium 2014/03/03 19:06:19 Why do you need gperf? That doesn't make much sen
205 '--defines', '<(feature_defines)',
206 ],
207 },
208 {
209 'action_name': 'MediaTypeNames',
210 'variables': {
211 'in_files': [
212 'css/MediaTypeNames.in',
213 ],
214 },
215 'inputs': [
216 '<@(scripts_for_in_files)',
217 '../build/scripts/make_names.py',
218 '<@(in_files)'
219 ],
220 'outputs': [
221 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.cpp',
222 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaTypeNames.h',
223 ],
224 'action': [
225 'python',
226 '../build/scripts/make_names.py',
227 '<@(in_files)',
228 '--output_dir',
229 '<(SHARED_INTERMEDIATE_DIR)/blink',
230 '--gperf', '<(gperf_exe)',
231 '--defines', '<(feature_defines)',
232 ],
233 },
234 {
183 'action_name': 'StylePropertyShorthand', 235 'action_name': 'StylePropertyShorthand',
184 'inputs': [ 236 'inputs': [
185 '<@(scripts_for_in_files)', 237 '<@(scripts_for_in_files)',
186 '../build/scripts/make_style_shorthands.py', 238 '../build/scripts/make_style_shorthands.py',
187 'css/CSSShorthands.in', 239 'css/CSSShorthands.in',
188 '../build/scripts/templates/StylePropertyShorthand.h.tmpl', 240 '../build/scripts/templates/StylePropertyShorthand.h.tmpl',
189 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl', 241 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
190 ], 242 ],
191 'outputs': [ 243 'outputs': [
192 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', 244 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp',
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 '../build/scripts/rule_bison.py', 703 '../build/scripts/rule_bison.py',
652 '<(RULE_INPUT_PATH)', 704 '<(RULE_INPUT_PATH)',
653 '<(SHARED_INTERMEDIATE_DIR)/blink', 705 '<(SHARED_INTERMEDIATE_DIR)/blink',
654 '<(bison_exe)', 706 '<(bison_exe)',
655 ], 707 ],
656 }, 708 },
657 ], 709 ],
658 }, 710 },
659 ], 711 ],
660 } 712 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698