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

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

Issue 15157002: Begin moving DeprecatedStyleBuilder properties to new generated StyleBuilder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'variables': { 218 'variables': {
219 'in_files': [ 219 'in_files': [
220 '../css/SVGCSSPropertyNames.in', 220 '../css/SVGCSSPropertyNames.in',
221 ], 221 ],
222 } 222 }
223 }], 223 }],
224 ], 224 ],
225 'msvs_cygwin_shell': 1, 225 'msvs_cygwin_shell': 1,
226 }, 226 },
227 { 227 {
228 'action_name': 'StyleBuilder',
229 'inputs': [
230 '<@(scripts_for_in_files)',
231 '../scripts/make_style_builder.py',
232 '../css/CSSProperties.in',
233 '../scripts/templates/StyleBuilder.cpp.tmpl',
234 ],
235 'outputs': [
236 '<(SHARED_INTERMEDIATE_DIR)/webkit/StyleBuilder.cpp',
237 ],
238 'action': [
239 'python',
240 '../scripts/make_style_builder.py',
241 '../css/CSSProperties.in',
242 '<(SHARED_INTERMEDIATE_DIR)/webkit/',
243 ],
244 },
245 {
228 'action_name': 'CSSValueKeywords', 246 'action_name': 'CSSValueKeywords',
229 'inputs': [ 247 'inputs': [
230 '../css/makevalues.pl', 248 '../css/makevalues.pl',
231 '../css/CSSValueKeywords.in', 249 '../css/CSSValueKeywords.in',
232 ], 250 ],
233 'outputs': [ 251 'outputs': [
234 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.cpp', 252 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.cpp',
235 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.h', 253 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.h',
236 ], 254 ],
237 'action': [ 255 'action': [
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 '../scripts/make-hash-tools.pl', 665 '../scripts/make-hash-tools.pl',
648 '<(SHARED_INTERMEDIATE_DIR)/webkit', 666 '<(SHARED_INTERMEDIATE_DIR)/webkit',
649 '<(RULE_INPUT_PATH)', 667 '<(RULE_INPUT_PATH)',
650 '<(gperf_exe)', 668 '<(gperf_exe)',
651 ], 669 ],
652 }, 670 },
653 ], 671 ],
654 }, 672 },
655 ], 673 ],
656 } 674 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698