| 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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 ], | 724 ], |
| 725 'action': [ | 725 'action': [ |
| 726 'python', | 726 'python', |
| 727 '../build/scripts/make_element_lookup_trie.py', | 727 '../build/scripts/make_element_lookup_trie.py', |
| 728 'html/HTMLTagNames.in', | 728 'html/HTMLTagNames.in', |
| 729 '--output_dir', | 729 '--output_dir', |
| 730 '<(blink_core_output_dir)', | 730 '<(blink_core_output_dir)', |
| 731 ], | 731 ], |
| 732 }, | 732 }, |
| 733 { | 733 { |
| 734 'action_name': 'ExperimentalFeatures', | 734 'action_name': 'OriginTrials', |
| 735 'inputs': [ | 735 'inputs': [ |
| 736 '<@(scripts_for_in_files)', | 736 '<@(scripts_for_in_files)', |
| 737 '../build/scripts/make_experimental_features.py', | 737 '../build/scripts/make_origin_trials.py', |
| 738 '../platform/RuntimeEnabledFeatures.in', | 738 '../platform/RuntimeEnabledFeatures.in', |
| 739 '../build/scripts/templates/ExperimentalFeatures.cpp.tmpl', | 739 '../build/scripts/templates/OriginTrials.cpp.tmpl', |
| 740 '../build/scripts/templates/ExperimentalFeatures.h.tmpl', | 740 '../build/scripts/templates/OriginTrials.h.tmpl', |
| 741 ], | 741 ], |
| 742 'outputs': [ | 742 'outputs': [ |
| 743 '<(blink_core_output_dir)/experiments/ExperimentalFeatures.cpp', | 743 '<(blink_core_output_dir)/origin_trials/OriginTrials.cpp', |
| 744 '<(blink_core_output_dir)/experiments/ExperimentalFeatures.h', | 744 '<(blink_core_output_dir)/origin_trials/OriginTrials.h', |
| 745 ], | 745 ], |
| 746 'action': [ | 746 'action': [ |
| 747 'python', | 747 'python', |
| 748 '../build/scripts/make_experimental_features.py', | 748 '../build/scripts/make_origin_trials.py', |
| 749 '../platform/RuntimeEnabledFeatures.in', | 749 '../platform/RuntimeEnabledFeatures.in', |
| 750 '--output_dir', | 750 '--output_dir', |
| 751 '<(blink_core_output_dir)/experiments', | 751 '<(blink_core_output_dir)/origin_trials', |
| 752 ], | 752 ], |
| 753 }, | 753 }, |
| 754 ], | 754 ], |
| 755 'rules': [ | 755 'rules': [ |
| 756 { | 756 { |
| 757 'rule_name': 'bison', | 757 'rule_name': 'bison', |
| 758 'extension': 'y', | 758 'extension': 'y', |
| 759 'outputs': [ | 759 'outputs': [ |
| 760 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp', | 760 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp', |
| 761 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h' | 761 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h' |
| 762 ], | 762 ], |
| 763 'action': [ | 763 'action': [ |
| 764 'python', | 764 'python', |
| 765 '../build/scripts/rule_bison.py', | 765 '../build/scripts/rule_bison.py', |
| 766 '<(RULE_INPUT_PATH)', | 766 '<(RULE_INPUT_PATH)', |
| 767 '<(blink_core_output_dir)', | 767 '<(blink_core_output_dir)', |
| 768 '<(bison_exe)', | 768 '<(bison_exe)', |
| 769 ], | 769 ], |
| 770 }, | 770 }, |
| 771 ], | 771 ], |
| 772 }, | 772 }, |
| 773 ], | 773 ], |
| 774 } | 774 } |
| OLD | NEW |