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

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, 4 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 'outputs': [ 654 'outputs': [
655 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp', 655 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp',
656 ], 656 ],
657 'action': [ 657 'action': [
658 'python', 658 'python',
659 '../core/scripts/make_token_matcher.py', 659 '../core/scripts/make_token_matcher.py',
660 '../core/css/CSSParser-in.cpp', 660 '../core/css/CSSParser-in.cpp',
661 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp', 661 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp',
662 ], 662 ],
663 }, 663 },
664 {
665 'action_name': 'MakeTokenMatcherForViewport',
666 'inputs': [
667 '<@(scripts_for_in_files)',
668 '../core/scripts/make_token_matcher.py',
669 '../core/html/HTMLMetaElement-in.cpp',
670 ],
671 'outputs': [
672 '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLMetaElement.cpp',
673 ],
674 'action': [
675 'python',
676 '../core/scripts/make_token_matcher.py',
677 '../core/html/HTMLMetaElement-in.cpp',
678 '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLMetaElement.cpp',
679 ],
680 },
681
664 ], 682 ],
665 'rules': [ 683 'rules': [
666 { 684 {
667 'rule_name': 'bison', 685 'rule_name': 'bison',
668 'extension': 'y', 686 'extension': 'y',
669 'outputs': [ 687 'outputs': [
670 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', 688 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp',
671 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' 689 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h'
672 ], 690 ],
673 'action': [ 691 'action': [
(...skipping 20 matching lines...) Expand all
694 'scripts/make-hash-tools.pl', 712 'scripts/make-hash-tools.pl',
695 '<(SHARED_INTERMEDIATE_DIR)/blink', 713 '<(SHARED_INTERMEDIATE_DIR)/blink',
696 '<(RULE_INPUT_PATH)', 714 '<(RULE_INPUT_PATH)',
697 '<(gperf_exe)', 715 '<(gperf_exe)',
698 ], 716 ],
699 }, 717 },
700 ], 718 ],
701 }, 719 },
702 ], 720 ],
703 } 721 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698