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

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, 4 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'action': [ 555 'action': [
556 'python', 556 'python',
557 '../build/scripts/make_qualified_names.py', 557 '../build/scripts/make_qualified_names.py',
558 'html/parser/MathMLTagNames.in', 558 'html/parser/MathMLTagNames.in',
559 'html/parser/MathMLAttributeNames.in', 559 'html/parser/MathMLAttributeNames.in',
560 '--output_dir', 560 '--output_dir',
561 '<(blink_core_output_dir)', 561 '<(blink_core_output_dir)',
562 ], 562 ],
563 }, 563 },
564 { 564 {
565 'action_name': 'UserAgentStyleSheets',
566 'variables': {
567 'scripts': [
568 '../build/scripts/make-file-arrays.py',
569 ],
570 'stylesheets': [
571 'css/html.css',
572 'css/quirks.css',
573 'css/view-source.css',
574 'css/themeChromium.css',
575 'css/themeChromiumAndroid.css',
576 'css/themeChromiumLinux.css',
577 'css/themeChromiumSkia.css',
578 'css/themeInputMultipleFields.css',
579 'css/themeMac.css',
580 'css/themeWin.css',
581 'css/themeWinQuirks.css',
582 'css/svg.css',
583 'css/navigationTransitions.css',
584 'css/mathml.css',
585 'css/mediaControls.css',
586 'css/mediaControlsAndroid.css',
587 'css/fullscreen.css',
588 'css/xhtmlmp.css',
589 'css/viewportAndroid.css',
590 ],
591 },
592 'inputs': [
593 '<@(scripts)',
594 '<@(stylesheets)'
595 ],
596 'outputs': [
597 '<(blink_core_output_dir)/UserAgentStyleSheets.h',
598 '<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp',
599 ],
600 'action': [
601 'python',
602 '<@(scripts)',
603 '--namespace',
604 'blink',
605 '--out-h=<(blink_core_output_dir)/UserAgentStyleSheets.h',
606 '--out-cpp=<(blink_core_output_dir)/UserAgentStyleSheetsData.cpp',
607 '<@(stylesheets)',
608 ],
609 },
610 {
611 'action_name': 'FetchInitiatorTypeNames', 565 'action_name': 'FetchInitiatorTypeNames',
612 'inputs': [ 566 'inputs': [
613 '<@(make_names_files)', 567 '<@(make_names_files)',
614 'fetch/FetchInitiatorTypeNames.in', 568 'fetch/FetchInitiatorTypeNames.in',
615 ], 569 ],
616 'outputs': [ 570 'outputs': [
617 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp', 571 '<(blink_core_output_dir)/FetchInitiatorTypeNames.cpp',
618 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h', 572 '<(blink_core_output_dir)/FetchInitiatorTypeNames.h',
619 ], 573 ],
620 'action': [ 574 'action': [
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 '../build/scripts/rule_bison.py', 773 '../build/scripts/rule_bison.py',
820 '<(RULE_INPUT_PATH)', 774 '<(RULE_INPUT_PATH)',
821 '<(blink_core_output_dir)', 775 '<(blink_core_output_dir)',
822 '<(bison_exe)', 776 '<(bison_exe)',
823 ], 777 ],
824 }, 778 },
825 ], 779 ],
826 }, 780 },
827 ], 781 ],
828 } 782 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698