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

Side by Side Diff: chrome/browser/resources/md_history/BUILD.gn

Issue 2670723002: [MD History] Vulcanize as part of GN build. (Closed)
Patch Set: revert css_build 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 unified diff | Download patch
OLDNEW
(Empty)
1 import("../vulcanize.gni")
2
3 vulcanize("vulcanize_app") {
4 host = "history"
5 html_in_file = "app.html"
6 html_out_file = "app.vulcanized.html"
7
8 input_type = "FOLDER"
9 input = rebase_path(".", root_build_dir)
10 js_out_file = "app.crisper.js"
11
12 excludes = [
13 "chrome://resources/html/util.html",
14 "chrome://history/constants.html",
15 ]
16
17 deps = []
18 }
19
20 vulcanize("vulcanize_lazy_load") {
21 host = "history"
22 html_in_file = "lazy_load.html"
23 html_out_file = "lazy_load.vulcanized.html"
24
25 input_type = "FOLDER"
26 input = rebase_path(".", root_build_dir)
27 js_out_file = "lazy_load.crisper.js"
28 excludes = [
29 "chrome://resources/html/util.html",
30 "chrome://history/constants.html",
Dan Beam 2017/02/08 05:41:55 why are you excluding these things? util.html and
calamity 2017/02/09 03:07:35 These files are loaded by history.html before app.
31 "chrome://history/app.html",
32 ]
33
34 deps = []
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698