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

Side by Side Diff: Source/core/BUILD.gn

Issue 361693004: Remove make-css-file-arrays.pl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: \s consistentcy Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/build/scripts/scripts.gypi ('k') | Source/core/core_generated.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 "--output_dir", rel_blink_core_gen_dir, 1026 "--output_dir", rel_blink_core_gen_dir,
1027 "--defines", feature_defines_string 1027 "--defines", feature_defines_string
1028 ] 1028 ]
1029 1029
1030 deps = make_core_generated_deps 1030 deps = make_core_generated_deps
1031 } 1031 }
1032 1032
1033 # "UserAgentStyleSheets" in make_core_generated from GYP. 1033 # "UserAgentStyleSheets" in make_core_generated from GYP.
1034 action("make_core_generated_user_agent_style_sheets") { 1034 action("make_core_generated_user_agent_style_sheets") {
1035 visibility = ":make_core_generated" 1035 visibility = ":make_core_generated"
1036 script = "../build/scripts/action_useragentstylesheets.py" 1036 script = "../build/scripts/make-file-arrays.py"
1037 1037
1038 scripts = [ 1038 source_prereqs = [
1039 "css/make-css-file-arrays.pl",
1040 ]
1041 stylesheets = [
1042 "css/html.css", 1039 "css/html.css",
1043 "css/quirks.css", 1040 "css/quirks.css",
1044 "css/view-source.css", 1041 "css/view-source.css",
1045 "css/themeChromium.css", 1042 "css/themeChromium.css",
1046 "css/themeChromiumAndroid.css", 1043 "css/themeChromiumAndroid.css",
1047 "css/themeChromiumLinux.css", 1044 "css/themeChromiumLinux.css",
1048 "css/themeChromiumSkia.css", 1045 "css/themeChromiumSkia.css",
1049 "css/themeInputMultipleFields.css", 1046 "css/themeInputMultipleFields.css",
1050 "css/themeMac.css", 1047 "css/themeMac.css",
1051 "css/themeWin.css", 1048 "css/themeWin.css",
1052 "css/themeWinQuirks.css", 1049 "css/themeWinQuirks.css",
1053 "css/svg.css", 1050 "css/svg.css",
1054 "css/navigationTransitions.css", 1051 "css/navigationTransitions.css",
1055 "css/mathml.css", 1052 "css/mathml.css",
1056 "css/mediaControls.css", 1053 "css/mediaControls.css",
1057 "css/mediaControlsAndroid.css", 1054 "css/mediaControlsAndroid.css",
1058 "css/fullscreen.css", 1055 "css/fullscreen.css",
1059 "css/xhtmlmp.css", 1056 "css/xhtmlmp.css",
1060 "css/viewportAndroid.css", 1057 "css/viewportAndroid.css",
1061 ] 1058 ]
1062 1059
1063 source_prereqs = scripts + stylesheets
1064 outputs = [ 1060 outputs = [
1065 "$blink_core_output_dir/UserAgentStyleSheets.h", 1061 "$blink_core_output_dir/UserAgentStyleSheets.h",
1066 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp", 1062 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp",
1067 ] 1063 ]
1068 1064
1069 args = 1065 args =
1070 rebase_path(outputs, root_build_dir) + 1066 [ "--namespace", "WebCore" ] +
1071 rebase_path(stylesheets, root_build_dir) + 1067 [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] +
1072 [ "--" ] + 1068 [ "--out-cpp=" + rebase_path(outputs[1], root_build_dir) ] +
1073 rebase_path(scripts, root_build_dir) + 1069 rebase_path(source_prereqs, root_build_dir)
1074 [ "--" ] +
1075 [ "--perl", perl_exe ]
1076 1070
1077 deps = make_core_generated_deps 1071 deps = make_core_generated_deps
1078 } 1072 }
1079 1073
1080 # "HTMLElementLookupTrie" in make_core_generated from GYP. 1074 # "HTMLElementLookupTrie" in make_core_generated from GYP.
1081 action("make_core_generated_html_element_lookup_trie") { 1075 action("make_core_generated_html_element_lookup_trie") {
1082 visibility = ":make_core_generated" 1076 visibility = ":make_core_generated"
1083 script = "../build/scripts/make_element_lookup_trie.py" 1077 script = "../build/scripts/make_element_lookup_trie.py"
1084 1078
1085 input_file = "html/HTMLTagNames.in" 1079 input_file = "html/HTMLTagNames.in"
(...skipping 27 matching lines...) Expand all
1113 "$blink_core_output_dir/{{source_name_part}}.h", 1107 "$blink_core_output_dir/{{source_name_part}}.h",
1114 ] 1108 ]
1115 args = [ 1109 args = [
1116 "{{source}}", 1110 "{{source}}",
1117 rel_blink_core_gen_dir, 1111 rel_blink_core_gen_dir,
1118 bison_exe, 1112 bison_exe,
1119 ] 1113 ]
1120 1114
1121 deps = make_core_generated_deps 1115 deps = make_core_generated_deps
1122 } 1116 }
OLDNEW
« no previous file with comments | « Source/build/scripts/scripts.gypi ('k') | Source/core/core_generated.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698