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

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

Issue 2936333002: WebUI: Replace vulcanize with polymer-bundler (Closed)
Patch Set: update polymer bundler Created 3 years, 5 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 6f9eada47d624677cd8d648e33572761ab868208..f6ab0e047fc2df27ab2a4f3ec13c994bc3d2d225 100644
--- a/chrome/browser/resources/md_history/BUILD.gn
+++ b/chrome/browser/resources/md_history/BUILD.gn
@@ -5,31 +5,24 @@ lazy_load_unbuilt = "lazy_load.vulcanized.unbuilt.html"
vulcanize("vulcanize_app") {
host = "history"
- html_in_file = "app.html"
- html_out_file = app_unbuilt
+ html_in_files = [
+ "app.html",
+ "lazy_load.html",
+ ]
+ html_out_files = [
+ app_unbuilt,
+ lazy_load_unbuilt,
+ ]
input = rebase_path(".", root_build_dir)
- js_out_file = "app.crisper.js"
-
- excludes = [
- "chrome://resources/html/util.html",
- "chrome://history/constants.html",
+ js_out_files = [
+ "app.crisper.js",
+ "lazy_load.crisper.js",
]
- deps = []
-}
-
-vulcanize("vulcanize_lazy_load") {
- host = "history"
- html_in_file = "lazy_load.html"
- html_out_file = lazy_load_unbuilt
-
- input = rebase_path(".", root_build_dir)
- js_out_file = "lazy_load.crisper.js"
excludes = [
"chrome://resources/html/util.html",
"chrome://history/constants.html",
- "chrome://history/app.html",
]
deps = []
@@ -46,6 +39,5 @@ polymer_css_build("build") {
]
deps = [
":vulcanize_app",
- ":vulcanize_lazy_load",
]
}

Powered by Google App Engine
This is Rietveld 408576698