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

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

Issue 72683003: Auto-generate InputTypeNames source from InputTypeNames.in. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 ], 488 ],
489 'action': [ 489 'action': [
490 'python', 490 'python',
491 '../build/scripts/make_names.py', 491 '../build/scripts/make_names.py',
492 'events/EventTypeNames.in', 492 'events/EventTypeNames.in',
493 '--output_dir', 493 '--output_dir',
494 '<(SHARED_INTERMEDIATE_DIR)/blink', 494 '<(SHARED_INTERMEDIATE_DIR)/blink',
495 ], 495 ],
496 }, 496 },
497 { 497 {
498 'action_name': 'InputTypeNames',
499 'inputs': [
500 '<@(make_names_files)',
501 'html/forms/InputTypeNames.in',
502 ],
503 'outputs': [
504 '<(SHARED_INTERMEDIATE_DIR)/blink/InputTypeNames.cpp',
505 '<(SHARED_INTERMEDIATE_DIR)/blink/InputTypeNames.h',
506 ],
507 'action': [
508 'python',
509 '../build/scripts/make_names.py',
510 'html/forms/InputTypeNames.in',
511 '--output_dir',
512 '<(SHARED_INTERMEDIATE_DIR)/blink',
513 ],
514 },
515 {
498 'action_name': 'XLinkNames', 516 'action_name': 'XLinkNames',
499 'inputs': [ 517 'inputs': [
500 '<@(make_qualified_names_files)', 518 '<@(make_qualified_names_files)',
501 'svg/xlinkattrs.in', 519 'svg/xlinkattrs.in',
502 ], 520 ],
503 'outputs': [ 521 'outputs': [
504 '<(SHARED_INTERMEDIATE_DIR)/blink/XLinkNames.cpp', 522 '<(SHARED_INTERMEDIATE_DIR)/blink/XLinkNames.cpp',
505 '<(SHARED_INTERMEDIATE_DIR)/blink/XLinkNames.h', 523 '<(SHARED_INTERMEDIATE_DIR)/blink/XLinkNames.h',
506 ], 524 ],
507 'action': [ 525 'action': [
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 '<(RULE_INPUT_PATH)', 615 '<(RULE_INPUT_PATH)',
598 '<(SHARED_INTERMEDIATE_DIR)/blink', 616 '<(SHARED_INTERMEDIATE_DIR)/blink',
599 '<(bison_exe)', 617 '<(bison_exe)',
600 ], 618 ],
601 'msvs_cygwin_shell': 1, 619 'msvs_cygwin_shell': 1,
602 }, 620 },
603 ], 621 ],
604 }, 622 },
605 ], 623 ],
606 } 624 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698