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

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

Issue 19555002: Translate viewport related meta tags into @viewport descriptors as suggested by the CSS Device Adap… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 'outputs': [ 638 'outputs': [
639 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSParser.cpp', 639 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSParser.cpp',
640 ], 640 ],
641 'action': [ 641 'action': [
642 'python', 642 'python',
643 '../core/scripts/make_token_matcher.py', 643 '../core/scripts/make_token_matcher.py',
644 '../core/css/CSSParser-in.cpp', 644 '../core/css/CSSParser-in.cpp',
645 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSParser.cpp', 645 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSParser.cpp',
646 ], 646 ],
647 }, 647 },
648 {
649 'action_name': 'MakeTokenMatcherForViewport',
650 'inputs': [
651 '<@(scripts_for_in_files)',
652 '../core/scripts/make_token_matcher.py',
653 '../core/html/HTMLMetaElement-in.cpp',
654 ],
655 'outputs': [
656 '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLMetaElement.cpp',
657 ],
658 'action': [
659 'python',
660 '../core/scripts/make_token_matcher.py',
661 '../core/html/HTMLMetaElement-in.cpp',
662 '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLMetaElement.cpp',
663 ],
664 },
665
648 ], 666 ],
649 'rules': [ 667 'rules': [
650 { 668 {
651 'rule_name': 'bison', 669 'rule_name': 'bison',
652 'extension': 'y', 670 'extension': 'y',
653 'outputs': [ 671 'outputs': [
654 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).cpp', 672 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).cpp',
655 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).h' 673 '<(SHARED_INTERMEDIATE_DIR)/webkit/<(RULE_INPUT_ROOT).h'
656 ], 674 ],
657 'action': [ 675 'action': [
(...skipping 20 matching lines...) Expand all
678 'scripts/make-hash-tools.pl', 696 'scripts/make-hash-tools.pl',
679 '<(SHARED_INTERMEDIATE_DIR)/webkit', 697 '<(SHARED_INTERMEDIATE_DIR)/webkit',
680 '<(RULE_INPUT_PATH)', 698 '<(RULE_INPUT_PATH)',
681 '<(gperf_exe)', 699 '<(gperf_exe)',
682 ], 700 ],
683 }, 701 },
684 ], 702 ],
685 }, 703 },
686 ], 704 ],
687 } 705 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698