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

Unified Diff: chrome/browser/resources/md_downloads/BUILD.gn

Issue 2698143003: [MD WebUI] Polymer-CSS-Build across all bundles. (Closed)
Patch Set: Created 3 years, 10 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
Index: chrome/browser/resources/md_downloads/BUILD.gn
diff --git a/chrome/browser/resources/md_downloads/BUILD.gn b/chrome/browser/resources/md_downloads/BUILD.gn
index b852bd4378375679428c9287a5f810c4cd3ddc71..fb7af07ecb90ed63f3d64d0cce1840901488155b 100644
--- a/chrome/browser/resources/md_downloads/BUILD.gn
+++ b/chrome/browser/resources/md_downloads/BUILD.gn
@@ -4,8 +4,16 @@ vulcanize("vulcanize") {
deps = []
host = "downloads"
html_in_file = "downloads.html"
- html_out_file = "vulcanized.html"
+ html_out_file = "vulcanized.unbuilt.html"
input = rebase_path(".", root_build_dir)
insert_in_head = "<base href=chrome://downloads>"
js_out_file = "crisper.js"
}
+
+css_build("build") {
+ input_files = [ "vulcanized.unbuilt.html" ]
+ output_files = [ "vulcanized.html" ]
+ deps = [
+ ":vulcanize",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698