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

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: 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
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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 "--output_dir", rel_blink_core_gen_dir, 1027 "--output_dir", rel_blink_core_gen_dir,
1028 "--defines", feature_defines_string 1028 "--defines", feature_defines_string
1029 ] 1029 ]
1030 1030
1031 deps = make_core_generated_deps 1031 deps = make_core_generated_deps
1032 } 1032 }
1033 1033
1034 # "UserAgentStyleSheets" in make_core_generated from GYP. 1034 # "UserAgentStyleSheets" in make_core_generated from GYP.
1035 action("make_core_generated_user_agent_style_sheets") { 1035 action("make_core_generated_user_agent_style_sheets") {
1036 visibility = ":make_core_generated" 1036 visibility = ":make_core_generated"
1037 script = "../build/scripts/action_useragentstylesheets.py" 1037 script = "../build/scripts/make-file-arrays.py"
haraken 2014/07/01 00:47:45 This should be make_file_arrays.py.
tkent 2014/07/01 00:52:49 I don't think so.
haraken 2014/07/01 00:59:59 All other files in build/scripts/ have xxx_yyy.py
tkent 2014/07/01 01:05:45 yeah, it's not in the scope of this CL.
1038 1038
1039 scripts = [ 1039 source_prereqs = [
1040 "css/make-css-file-arrays.pl",
1041 ]
1042 stylesheets = [
1043 "css/html.css", 1040 "css/html.css",
1044 "css/quirks.css", 1041 "css/quirks.css",
1045 "css/view-source.css", 1042 "css/view-source.css",
1046 "css/themeChromium.css", 1043 "css/themeChromium.css",
1047 "css/themeChromiumAndroid.css", 1044 "css/themeChromiumAndroid.css",
1048 "css/themeChromiumLinux.css", 1045 "css/themeChromiumLinux.css",
1049 "css/themeChromiumSkia.css", 1046 "css/themeChromiumSkia.css",
1050 "css/themeInputMultipleFields.css", 1047 "css/themeInputMultipleFields.css",
1051 "css/themeMac.css", 1048 "css/themeMac.css",
1052 "css/themeWin.css", 1049 "css/themeWin.css",
1053 "css/themeWinQuirks.css", 1050 "css/themeWinQuirks.css",
1054 "css/svg.css", 1051 "css/svg.css",
1055 "css/navigationTransitions.css", 1052 "css/navigationTransitions.css",
1056 "css/mathml.css", 1053 "css/mathml.css",
1057 "css/mediaControls.css", 1054 "css/mediaControls.css",
1058 "css/mediaControlsAndroid.css", 1055 "css/mediaControlsAndroid.css",
1059 "css/fullscreen.css", 1056 "css/fullscreen.css",
1060 "css/xhtmlmp.css", 1057 "css/xhtmlmp.css",
1061 "css/viewportAndroid.css", 1058 "css/viewportAndroid.css",
1062 ] 1059 ]
1063 1060
1064 source_prereqs = scripts + stylesheets
1065 outputs = [ 1061 outputs = [
1066 "$blink_core_output_dir/UserAgentStyleSheets.h", 1062 "$blink_core_output_dir/UserAgentStyleSheets.h",
1067 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp", 1063 "$blink_core_output_dir/UserAgentStyleSheetsData.cpp",
1068 ] 1064 ]
1069 1065
1070 args = 1066 args =
1071 rebase_path(outputs, root_build_dir) + 1067 [ "--namespace", "WebCore" ] +
1072 rebase_path(stylesheets, root_build_dir) + 1068 [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] +
1073 [ "--" ] + 1069 [ "--out-cpp=" + rebase_path(outputs[1], root_build_dir) ] +
1074 rebase_path(scripts, root_build_dir) + 1070 rebase_path(source_prereqs, root_build_dir)
1075 [ "--" ] +
1076 [ "--perl", perl_exe ]
1077 1071
1078 deps = make_core_generated_deps 1072 deps = make_core_generated_deps
1079 } 1073 }
1080 1074
1081 # "HTMLElementLookupTrie" in make_core_generated from GYP. 1075 # "HTMLElementLookupTrie" in make_core_generated from GYP.
1082 action("make_core_generated_html_element_lookup_trie") { 1076 action("make_core_generated_html_element_lookup_trie") {
1083 visibility = ":make_core_generated" 1077 visibility = ":make_core_generated"
1084 script = "../build/scripts/make_element_lookup_trie.py" 1078 script = "../build/scripts/make_element_lookup_trie.py"
1085 1079
1086 input_file = "html/HTMLTagNames.in" 1080 input_file = "html/HTMLTagNames.in"
(...skipping 27 matching lines...) Expand all
1114 "$blink_core_output_dir/{{source_name_part}}.h", 1108 "$blink_core_output_dir/{{source_name_part}}.h",
1115 ] 1109 ]
1116 args = [ 1110 args = [
1117 "{{source}}", 1111 "{{source}}",
1118 rel_blink_core_gen_dir, 1112 rel_blink_core_gen_dir,
1119 bison_exe, 1113 bison_exe,
1120 ] 1114 ]
1121 1115
1122 deps = make_core_generated_deps 1116 deps = make_core_generated_deps
1123 } 1117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698