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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 'action': [ | 565 'action': [ |
566 'python', | 566 'python', |
567 '../build/scripts/make_qualified_names.py', | 567 '../build/scripts/make_qualified_names.py', |
568 'html/parser/MathMLTagNames.in', | 568 'html/parser/MathMLTagNames.in', |
569 'html/parser/MathMLAttributeNames.in', | 569 'html/parser/MathMLAttributeNames.in', |
570 '--output_dir', | 570 '--output_dir', |
571 '<(blink_core_output_dir)', | 571 '<(blink_core_output_dir)', |
572 ], | 572 ], |
573 }, | 573 }, |
574 { | 574 { |
575 'action_name': 'UserAgentStyleSheets', | |
576 'variables': { | |
577 'scripts': [ | |
578 '../build/scripts/make-file-arrays.py', | |
579 ], | |
580 'stylesheets': [ | |
581 'css/html.css', | |
582 'css/quirks.css', | |
583 'css/view-source.css', | |
584 'css/themeChromium.css', | |
585 'css/themeChromiumAndroid.css', | |
586 'css/themeChromiumLinux.css', | |
587 'css/themeChromiumSkia.css', | |
588 'css/themeInputMultipleFields.css', | |
589 'css/themeMac.css', | |
590 'css/themeWin.css', | |
591 'css/themeWinQuirks.css', | |
592 'css/svg.css', | |
593 'css/navigationTransitions.css', | |
594 'css/mathml.css', | |
595 'css/mediaControls.css', | |
596 'css/mediaControlsAndroid.css', | |
597 'css/fullscreen.css', | |
598 'css/xhtmlmp.css', | |
599 'css/viewportAndroid.css', | |
600 ], | |
601 }, | |
602 'inputs': [ | |
603 '<@(scripts)', | |
604 '<@(stylesheets)' | |
605 ], | |
606 'outputs': [ | |
607 '<(blink_core_output_dir)/UserAgentStyleSheets.h', | |
608 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', | |
609 ], | |
610 'action': [ | |
611 'python', | |
612 '<@(scripts)', | |
613 '--namespace', | |
614 'blink', | |
615 '--out-h=<(blink_core_output_dir)/UserAgentStyleSheets.h', | |
616 '--out-cpp=<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', | |
617 '<@(stylesheets)', | |
618 ], | |
619 }, | |
620 { | |
621 'action_name': 'FetchInitiatorTypeNames', | 575 'action_name': 'FetchInitiatorTypeNames', |
622 'inputs': [ | 576 'inputs': [ |
623 '<@(make_names_files)', | 577 '<@(make_names_files)', |
624 'fetch/FetchInitiatorTypeNames.in', | 578 'fetch/FetchInitiatorTypeNames.in', |
625 ], | 579 ], |
626 'outputs': [ | 580 'outputs': [ |
627 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', | 581 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', |
628 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', | 582 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', |
629 ], | 583 ], |
630 'action': [ | 584 'action': [ |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 '../build/scripts/rule_bison.py', | 783 '../build/scripts/rule_bison.py', |
830 '<(RULE_INPUT_PATH)', | 784 '<(RULE_INPUT_PATH)', |
831 '<(blink_core_output_dir)', | 785 '<(blink_core_output_dir)', |
832 '<(bison_exe)', | 786 '<(bison_exe)', |
833 ], | 787 ], |
834 }, | 788 }, |
835 ], | 789 ], |
836 }, | 790 }, |
837 ], | 791 ], |
838 } | 792 } |
OLD | NEW |