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

Unified Diff: chrome/browser/resources/md_history/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/resources/md_downloads/BUILD.gn ('k') | chrome/browser/resources/polymer_css_build_gn.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..6f9eada47d624677cd8d648e33572761ab868208 100644
--- a/chrome/browser/resources/md_history/BUILD.gn
+++ b/chrome/browser/resources/md_history/BUILD.gn
@@ -1,9 +1,12 @@
import("../vulcanize.gni")
+app_unbuilt = "app.vulcanized.unbuilt.html"
+lazy_load_unbuilt = "lazy_load.vulcanized.unbuilt.html"
+
vulcanize("vulcanize_app") {
host = "history"
html_in_file = "app.html"
- html_out_file = "app.vulcanized.html"
+ html_out_file = app_unbuilt
input = rebase_path(".", root_build_dir)
js_out_file = "app.crisper.js"
@@ -19,7 +22,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_unbuilt
input = rebase_path(".", root_build_dir)
js_out_file = "lazy_load.crisper.js"
@@ -31,3 +34,18 @@ vulcanize("vulcanize_lazy_load") {
deps = []
}
+
+polymer_css_build("build") {
+ input_files = [
+ app_unbuilt,
+ lazy_load_unbuilt,
+ ]
+ output_files = [
+ "app.vulcanized.html",
+ "lazy_load.vulcanized.html",
+ ]
+ deps = [
+ ":vulcanize_app",
+ ":vulcanize_lazy_load",
+ ]
+}
« no previous file with comments | « chrome/browser/resources/md_downloads/BUILD.gn ('k') | chrome/browser/resources/polymer_css_build_gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698