Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: Source/core/core_generated.gyp

Issue 438843004: Move the user agent styles sheets to blink_resources.grd (Part 3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 'action': [ 566 'action': [
567 'python', 567 'python',
568 '../build/scripts/make_qualified_names.py', 568 '../build/scripts/make_qualified_names.py',
569 'html/parser/MathMLTagNames.in', 569 'html/parser/MathMLTagNames.in',
570 'html/parser/MathMLAttributeNames.in', 570 'html/parser/MathMLAttributeNames.in',
571 '--output_dir', 571 '--output_dir',
572 '<(blink_core_output_dir)', 572 '<(blink_core_output_dir)',
573 ], 573 ],
574 }, 574 },
575 { 575 {
576 'action_name': 'UserAgentStyleSheets',
577 'variables': {
578 'scripts': [
579 '../build/scripts/make-file-arrays.py',
580 ],
581 'stylesheets': [
582 'css/html.css',
583 'css/quirks.css',
584 'css/view-source.css',
585 'css/themeChromium.css',
586 'css/themeChromiumAndroid.css',
587 'css/themeChromiumLinux.css',
588 'css/themeChromiumSkia.css',
589 'css/themeInputMultipleFields.css',
590 'css/themeMac.css',
591 'css/themeWin.css',
592 'css/themeWinQuirks.css',
593 'css/svg.css',
594 'css/navigationTransitions.css',
595 'css/mathml.css',
596 'css/mediaControls.css',
597 'css/mediaControlsAndroid.css',
598 'css/fullscreen.css',
599 'css/xhtmlmp.css',
600 'css/viewportAndroid.css',
601 ],
602 },
603 'inputs': [
604 '<@(scripts)',
605 '<@(stylesheets)'
606 ],
607 'outputs': [
608 '<(blink_core_output_dir)/UserAgentStyleSheets.h',
609 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp',
610 ],
611 'action': [
612 'python',
613 '<@(scripts)',
614 '--namespace',
615 'blink',
616 '--out-h=<(blink_core_output_dir)/UserAgentStyleSheets.h',
617 '--out-cpp=<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp',
618 '<@(stylesheets)',
619 ],
620 },
621 {
622 'action_name': 'FetchInitiatorTypeNames', 576 'action_name': 'FetchInitiatorTypeNames',
623 'inputs': [ 577 'inputs': [
624 '<@(make_names_files)', 578 '<@(make_names_files)',
625 'fetch/FetchInitiatorTypeNames.in', 579 'fetch/FetchInitiatorTypeNames.in',
626 ], 580 ],
627 'outputs': [ 581 'outputs': [
628 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', 582 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp',
629 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', 583 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h',
630 ], 584 ],
631 'action': [ 585 'action': [
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 '../build/scripts/rule_bison.py', 784 '../build/scripts/rule_bison.py',
831 '<(RULE_INPUT_PATH)', 785 '<(RULE_INPUT_PATH)',
832 '<(blink_core_output_dir)', 786 '<(blink_core_output_dir)',
833 '<(bison_exe)', 787 '<(bison_exe)',
834 ], 788 ],
835 }, 789 },
836 ], 790 ],
837 }, 791 },
838 ], 792 ],
839 } 793 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698