| 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |