| 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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 'html/parser/MathMLAttributeNames.in', | 577 'html/parser/MathMLAttributeNames.in', |
| 578 '--output_dir', | 578 '--output_dir', |
| 579 '<(blink_core_output_dir)', | 579 '<(blink_core_output_dir)', |
| 580 '--defines', '<(feature_defines)' | 580 '--defines', '<(feature_defines)' |
| 581 ], | 581 ], |
| 582 }, | 582 }, |
| 583 { | 583 { |
| 584 'action_name': 'UserAgentStyleSheets', | 584 'action_name': 'UserAgentStyleSheets', |
| 585 'variables': { | 585 'variables': { |
| 586 'scripts': [ | 586 'scripts': [ |
| 587 'css/make-css-file-arrays.pl', | 587 '../build/scripts/make-file-arrays.py', |
| 588 ], | 588 ], |
| 589 'stylesheets': [ | 589 'stylesheets': [ |
| 590 'css/html.css', | 590 'css/html.css', |
| 591 'css/quirks.css', | 591 'css/quirks.css', |
| 592 'css/view-source.css', | 592 'css/view-source.css', |
| 593 'css/themeChromium.css', | 593 'css/themeChromium.css', |
| 594 'css/themeChromiumAndroid.css', | 594 'css/themeChromiumAndroid.css', |
| 595 'css/themeChromiumLinux.css', | 595 'css/themeChromiumLinux.css', |
| 596 'css/themeChromiumSkia.css', | 596 'css/themeChromiumSkia.css', |
| 597 'css/themeInputMultipleFields.css', | 597 'css/themeInputMultipleFields.css', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 611 'inputs': [ | 611 'inputs': [ |
| 612 '<@(scripts)', | 612 '<@(scripts)', |
| 613 '<@(stylesheets)' | 613 '<@(stylesheets)' |
| 614 ], | 614 ], |
| 615 'outputs': [ | 615 'outputs': [ |
| 616 '<(blink_core_output_dir)/UserAgentStyleSheets.h', | 616 '<(blink_core_output_dir)/UserAgentStyleSheets.h', |
| 617 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', | 617 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', |
| 618 ], | 618 ], |
| 619 'action': [ | 619 'action': [ |
| 620 'python', | 620 'python', |
| 621 '../build/scripts/action_useragentstylesheets.py', | 621 '<@(scripts)', |
| 622 '<@(_outputs)', | 622 '--namespace', |
| 623 'WebCore', |
| 624 '--out-h=<(blink_core_output_dir)/UserAgentStyleSheets.h', |
| 625 '--out-cpp=<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', |
| 623 '<@(stylesheets)', | 626 '<@(stylesheets)', |
| 624 '--', | |
| 625 '<@(scripts)', | |
| 626 '--', | |
| 627 '--perl', '<(perl_exe)', | |
| 628 ], | 627 ], |
| 629 }, | 628 }, |
| 630 { | 629 { |
| 631 'action_name': 'FetchInitiatorTypeNames', | 630 'action_name': 'FetchInitiatorTypeNames', |
| 632 'inputs': [ | 631 'inputs': [ |
| 633 '<@(make_names_files)', | 632 '<@(make_names_files)', |
| 634 'fetch/FetchInitiatorTypeNames.in', | 633 'fetch/FetchInitiatorTypeNames.in', |
| 635 ], | 634 ], |
| 636 'outputs': [ | 635 'outputs': [ |
| 637 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', | 636 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 '../build/scripts/rule_bison.py', | 838 '../build/scripts/rule_bison.py', |
| 840 '<(RULE_INPUT_PATH)', | 839 '<(RULE_INPUT_PATH)', |
| 841 '<(blink_core_output_dir)', | 840 '<(blink_core_output_dir)', |
| 842 '<(bison_exe)', | 841 '<(bison_exe)', |
| 843 ], | 842 ], |
| 844 }, | 843 }, |
| 845 ], | 844 ], |
| 846 }, | 845 }, |
| 847 ], | 846 ], |
| 848 } | 847 } |
| OLD | NEW |