OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |