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

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

Issue 209503003: Convert MediaQueryTokenizer's codepoints array to be static data (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Dynamic file name in comment 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'action': [ 247 'action': [
248 'python', 248 'python',
249 '../build/scripts/make_names.py', 249 '../build/scripts/make_names.py',
250 '<@(in_files)', 250 '<@(in_files)',
251 '--output_dir', 251 '--output_dir',
252 '<(SHARED_INTERMEDIATE_DIR)/blink', 252 '<(SHARED_INTERMEDIATE_DIR)/blink',
253 '--defines', '<(feature_defines)', 253 '--defines', '<(feature_defines)',
254 ], 254 ],
255 }, 255 },
256 { 256 {
257 'action_name': 'MediaQueryTokenizerCodepoints',
258 'inputs': [
259 '../build/scripts/make_mediaquery_tokenizer_codepoints.py',
260 ],
261 'outputs': [
262 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaQueryTokenizerCodepoints.cpp' ,
263 ],
264 'action': [
265 'python',
266 '../build/scripts/make_mediaquery_tokenizer_codepoints.py',
267 '--output_dir',
268 '<(SHARED_INTERMEDIATE_DIR)/blink',
269 '--defines', '<(feature_defines)',
270 ],
271 },
272 {
257 'action_name': 'StylePropertyShorthand', 273 'action_name': 'StylePropertyShorthand',
258 'inputs': [ 274 'inputs': [
259 '<@(scripts_for_in_files)', 275 '<@(scripts_for_in_files)',
260 '../build/scripts/make_style_shorthands.py', 276 '../build/scripts/make_style_shorthands.py',
261 'css/CSSShorthands.in', 277 'css/CSSShorthands.in',
262 '../build/scripts/templates/StylePropertyShorthand.h.tmpl', 278 '../build/scripts/templates/StylePropertyShorthand.h.tmpl',
263 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl', 279 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl',
264 ], 280 ],
265 'outputs': [ 281 'outputs': [
266 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', 282 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp',
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 '../build/scripts/rule_bison.py', 760 '../build/scripts/rule_bison.py',
745 '<(RULE_INPUT_PATH)', 761 '<(RULE_INPUT_PATH)',
746 '<(SHARED_INTERMEDIATE_DIR)/blink', 762 '<(SHARED_INTERMEDIATE_DIR)/blink',
747 '<(bison_exe)', 763 '<(bison_exe)',
748 ], 764 ],
749 }, 765 },
750 ], 766 ],
751 }, 767 },
752 ], 768 ],
753 } 769 }
OLDNEW
« no previous file with comments | « Source/build/scripts/make_mediaquery_tokenizer_codepoints.py ('k') | Source/core/css/parser/MediaQueryTokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698