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

Unified 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, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/build/scripts/scripts.gypi ('k') | Source/core/core_generated.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/BUILD.gn
diff --git a/Source/core/BUILD.gn b/Source/core/BUILD.gn
index d97c811d44a7fc3d62f837b987460d0900b83ffc..add824a1308c36e33638b17752e6258431aa7e73 100644
--- a/Source/core/BUILD.gn
+++ b/Source/core/BUILD.gn
@@ -1033,12 +1033,9 @@ action("make_core_generated_media_query_tokenizer_codepoints") {
# "UserAgentStyleSheets" in make_core_generated from GYP.
action("make_core_generated_user_agent_style_sheets") {
visibility = ":make_core_generated"
- script = "../build/scripts/action_useragentstylesheets.py"
+ script = "../build/scripts/make-file-arrays.py"
- scripts = [
- "css/make-css-file-arrays.pl",
- ]
- stylesheets = [
+ source_prereqs = [
"css/html.css",
"css/quirks.css",
"css/view-source.css",
@@ -1060,19 +1057,16 @@ action("make_core_generated_user_agent_style_sheets") {
"css/viewportAndroid.css",
]
- source_prereqs = scripts + stylesheets
outputs = [
"$blink_core_output_dir/UserAgentStyleSheets.h",
"$blink_core_output_dir/UserAgentStyleSheetsData.cpp",
]
args =
- rebase_path(outputs, root_build_dir) +
- rebase_path(stylesheets, root_build_dir) +
- [ "--" ] +
- rebase_path(scripts, root_build_dir) +
- [ "--" ] +
- [ "--perl", perl_exe ]
+ [ "--namespace", "WebCore" ] +
+ [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] +
+ [ "--out-cpp=" + rebase_path(outputs[1], root_build_dir) ] +
+ rebase_path(source_prereqs, root_build_dir)
deps = make_core_generated_deps
}
« 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