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

Unified Diff: chrome/browser/resources/md_history/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_history/BUILD.gn
diff --git a/chrome/browser/resources/md_history/BUILD.gn b/chrome/browser/resources/md_history/BUILD.gn
index 982772f3d7054f03feb478cb4ee3391682cba686..5bb5e92948eb833bcad32399c680eff0afebafed 100644
--- a/chrome/browser/resources/md_history/BUILD.gn
+++ b/chrome/browser/resources/md_history/BUILD.gn
@@ -3,7 +3,7 @@ import("../vulcanize.gni")
vulcanize("vulcanize_app") {
host = "history"
html_in_file = "app.html"
- html_out_file = "app.vulcanized.html"
+ html_out_file = "app.vulcanized.unbuilt.html"
input = rebase_path(".", root_build_dir)
js_out_file = "app.crisper.js"
@@ -19,7 +19,7 @@ vulcanize("vulcanize_app") {
vulcanize("vulcanize_lazy_load") {
host = "history"
html_in_file = "lazy_load.html"
- html_out_file = "lazy_load.vulcanized.html"
+ html_out_file = "lazy_load.vulcanized.unbuilt.html"
input = rebase_path(".", root_build_dir)
js_out_file = "lazy_load.crisper.js"
@@ -31,3 +31,18 @@ vulcanize("vulcanize_lazy_load") {
deps = []
}
+
+css_build("build") {
+ input_files = [
+ "lazy_load.vulcanized.unbuilt.html",
dpapad 2017/02/16 18:58:09 Can lazy_load.vulcanized.unbuilt.html and app.vulc
calamity 2017/02/17 00:24:04 Done.
+ "app.vulcanized.unbuilt.html",
+ ]
+ output_files = [
+ "lazy_load.vulcanized.html",
+ "app.vulcanized.html",
+ ]
+ deps = [
+ ":vulcanize_app",
+ ":vulcanize_lazy_load",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698