| 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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 'action': [ | 545 'action': [ |
| 546 'python', | 546 'python', |
| 547 '../build/scripts/make_qualified_names.py', | 547 '../build/scripts/make_qualified_names.py', |
| 548 'html/parser/MathMLTagNames.in', | 548 'html/parser/MathMLTagNames.in', |
| 549 'html/parser/MathMLAttributeNames.in', | 549 'html/parser/MathMLAttributeNames.in', |
| 550 '--output_dir', | 550 '--output_dir', |
| 551 '<(blink_core_output_dir)', | 551 '<(blink_core_output_dir)', |
| 552 ], | 552 ], |
| 553 }, | 553 }, |
| 554 { | 554 { |
| 555 'action_name': 'UserAgentStyleSheets', | |
| 556 'variables': { | |
| 557 'scripts': [ | |
| 558 '../build/scripts/make-file-arrays.py', | |
| 559 ], | |
| 560 'stylesheets': [ | |
| 561 'css/html.css', | |
| 562 'css/quirks.css', | |
| 563 'css/view-source.css', | |
| 564 'css/themeChromium.css', | |
| 565 'css/themeChromiumAndroid.css', | |
| 566 'css/themeChromiumLinux.css', | |
| 567 'css/themeChromiumSkia.css', | |
| 568 'css/themeInputMultipleFields.css', | |
| 569 'css/themeMac.css', | |
| 570 'css/themeWin.css', | |
| 571 'css/themeWinQuirks.css', | |
| 572 'css/svg.css', | |
| 573 'css/navigationTransitions.css', | |
| 574 'css/mathml.css', | |
| 575 'css/mediaControls.css', | |
| 576 'css/mediaControlsAndroid.css', | |
| 577 'css/fullscreen.css', | |
| 578 'css/xhtmlmp.css', | |
| 579 'css/viewportAndroid.css', | |
| 580 ], | |
| 581 }, | |
| 582 'inputs': [ | |
| 583 '<@(scripts)', | |
| 584 '<@(stylesheets)' | |
| 585 ], | |
| 586 'outputs': [ | |
| 587 '<(blink_core_output_dir)/UserAgentStyleSheets.h', | |
| 588 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', | |
| 589 ], | |
| 590 'action': [ | |
| 591 'python', | |
| 592 '<@(scripts)', | |
| 593 '--namespace', | |
| 594 'blink', | |
| 595 '--out-h=<(blink_core_output_dir)/UserAgentStyleSheets.h', | |
| 596 '--out-cpp=<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp', | |
| 597 '<@(stylesheets)', | |
| 598 ], | |
| 599 }, | |
| 600 { | |
| 601 'action_name': 'FetchInitiatorTypeNames', | 555 'action_name': 'FetchInitiatorTypeNames', |
| 602 'inputs': [ | 556 'inputs': [ |
| 603 '<@(make_names_files)', | 557 '<@(make_names_files)', |
| 604 'fetch/FetchInitiatorTypeNames.in', | 558 'fetch/FetchInitiatorTypeNames.in', |
| 605 ], | 559 ], |
| 606 'outputs': [ | 560 'outputs': [ |
| 607 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', | 561 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', |
| 608 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', | 562 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', |
| 609 ], | 563 ], |
| 610 'action': [ | 564 'action': [ |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 '../build/scripts/rule_bison.py', | 763 '../build/scripts/rule_bison.py', |
| 810 '<(RULE_INPUT_PATH)', | 764 '<(RULE_INPUT_PATH)', |
| 811 '<(blink_core_output_dir)', | 765 '<(blink_core_output_dir)', |
| 812 '<(bison_exe)', | 766 '<(bison_exe)', |
| 813 ], | 767 ], |
| 814 }, | 768 }, |
| 815 ], | 769 ], |
| 816 }, | 770 }, |
| 817 ], | 771 ], |
| 818 } | 772 } |
| OLD | NEW |