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

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

Issue 175693007: Generate isHTML*Element() / toHTML*Element() helper functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make toHTMLObjectElement() work for FormAssociatedElement input Created 6 years, 10 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 | Annotate | Revision Log
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 ], 267 ],
268 'action': [ 268 'action': [
269 'python', 269 'python',
270 '../build/scripts/make_element_factory.py', 270 '../build/scripts/make_element_factory.py',
271 'html/HTMLTagNames.in', 271 'html/HTMLTagNames.in',
272 'html/HTMLAttributeNames.in', 272 'html/HTMLAttributeNames.in',
273 '--output_dir', 273 '--output_dir',
274 '<(SHARED_INTERMEDIATE_DIR)/blink', 274 '<(SHARED_INTERMEDIATE_DIR)/blink',
275 ], 275 ],
276 }, 276 },
277 {
278 'action_name': 'HTMLElementTypeHelpers',
279 'inputs': [
280 '<@(make_element_type_helpers_files)',
281 'html/HTMLTagNames.in',
282 ],
283 'outputs': [
284 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLElementTypeHelpers.h',
285 ],
286 'action': [
287 'python',
288 '../build/scripts/make_element_type_helpers.py',
289 'html/HTMLTagNames.in',
290 '--output_dir',
291 '<(SHARED_INTERMEDIATE_DIR)/blink',
292 ],
293 },
277 { 294 {
278 'action_name': 'SVGNames', 295 'action_name': 'SVGNames',
279 'inputs': [ 296 'inputs': [
280 '<@(make_element_factory_files)', 297 '<@(make_element_factory_files)',
281 'svg/SVGTagNames.in', 298 'svg/SVGTagNames.in',
282 'svg/SVGAttributeNames.in', 299 'svg/SVGAttributeNames.in',
283 ], 300 ],
284 'outputs': [ 301 'outputs': [
285 '<(SHARED_INTERMEDIATE_DIR)/blink/SVGElementFactory.cpp', 302 '<(SHARED_INTERMEDIATE_DIR)/blink/SVGElementFactory.cpp',
286 '<(SHARED_INTERMEDIATE_DIR)/blink/SVGElementFactory.h', 303 '<(SHARED_INTERMEDIATE_DIR)/blink/SVGElementFactory.h',
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 '../build/scripts/rule_bison.py', 651 '../build/scripts/rule_bison.py',
635 '<(RULE_INPUT_PATH)', 652 '<(RULE_INPUT_PATH)',
636 '<(SHARED_INTERMEDIATE_DIR)/blink', 653 '<(SHARED_INTERMEDIATE_DIR)/blink',
637 '<(bison_exe)', 654 '<(bison_exe)',
638 ], 655 ],
639 }, 656 },
640 ], 657 ],
641 }, 658 },
642 ], 659 ],
643 } 660 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698