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

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

Issue 2698143003: [MD WebUI] Polymer-CSS-Build across all bundles. (Closed)
Patch Set: address comments 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
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/resources/md_history/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b0e66aaa26e2bcf1ee784bf7309ef49bb0e20e30 100644
--- a/chrome/browser/resources/md_downloads/BUILD.gn
+++ b/chrome/browser/resources/md_downloads/BUILD.gn
@@ -1,11 +1,21 @@
import("../vulcanize.gni")
+vulcanized_unbuilt = "vulcanized.unbuilt.html"
+
vulcanize("vulcanize") {
deps = []
host = "downloads"
html_in_file = "downloads.html"
- html_out_file = "vulcanized.html"
+ html_out_file = vulcanized_unbuilt
input = rebase_path(".", root_build_dir)
insert_in_head = "<base href=chrome://downloads>"
js_out_file = "crisper.js"
}
+
+polymer_css_build("build") {
+ input_files = [ vulcanized_unbuilt ]
+ output_files = [ "vulcanized.html" ]
+ deps = [
+ ":vulcanize",
+ ]
+}
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/resources/md_history/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698