Chromium Code Reviews| 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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 784 '<(blink_core_output_dir)/origin_trials/OriginTrials.h', | 784 '<(blink_core_output_dir)/origin_trials/OriginTrials.h', |
| 785 ], | 785 ], |
| 786 'action': [ | 786 'action': [ |
| 787 'python', | 787 'python', |
| 788 '../build/scripts/make_origin_trials.py', | 788 '../build/scripts/make_origin_trials.py', |
| 789 '../platform/RuntimeEnabledFeatures.in', | 789 '../platform/RuntimeEnabledFeatures.in', |
| 790 '--output_dir', | 790 '--output_dir', |
| 791 '<(blink_core_output_dir)/origin_trials', | 791 '<(blink_core_output_dir)/origin_trials', |
| 792 ], | 792 ], |
| 793 }, | 793 }, |
| 794 { | |
| 795 'action_name': 'MakeMinimizedCSS', | |
|
Timothy Loh
2016/08/10 05:37:39
Do we still need to edit gyp files? :)
kouhei (in TOK)
2016/11/01 10:49:16
No.
| |
| 796 'inputs': [ | |
| 797 '<@(scripts_for_in_files)', | |
| 798 '../build/scripts/minimize_css.py', | |
| 799 'css/html.css', | |
| 800 ], | |
| 801 'outputs': [ | |
| 802 '<(blink_core_output_dir)/html.css', | |
| 803 ], | |
| 804 'action': [ | |
| 805 'python', | |
| 806 '../build/scripts/minimize_css.py', | |
| 807 'css/html.css', | |
| 808 '--output_dir', | |
| 809 '<(blink_core_output_dir)', | |
| 810 ], | |
| 811 }, | |
| 794 ], | 812 ], |
| 795 'rules': [ | 813 'rules': [ |
| 796 { | 814 { |
| 797 'rule_name': 'bison', | 815 'rule_name': 'bison', |
| 798 'extension': 'y', | 816 'extension': 'y', |
| 799 'outputs': [ | 817 'outputs': [ |
| 800 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp', | 818 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).cpp', |
| 801 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h' | 819 '<(blink_core_output_dir)/<(RULE_INPUT_ROOT).h' |
| 802 ], | 820 ], |
| 803 'action': [ | 821 'action': [ |
| 804 'python', | 822 'python', |
| 805 '../build/scripts/rule_bison.py', | 823 '../build/scripts/rule_bison.py', |
| 806 '<(RULE_INPUT_PATH)', | 824 '<(RULE_INPUT_PATH)', |
| 807 '<(blink_core_output_dir)', | 825 '<(blink_core_output_dir)', |
| 808 '<(bison_exe)', | 826 '<(bison_exe)', |
| 809 ], | 827 ], |
| 810 }, | 828 }, |
| 811 ], | 829 ], |
| 812 }, | 830 }, |
| 813 ], | 831 ], |
| 814 } | 832 } |
| OLD | NEW |