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

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

Issue 2907083002: MD Bookmarks: Vulcanize page to reduce load time (Closed)
Patch Set: Fix Created 3 years, 6 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 vulcanized_unbuilt = "vulcanized.unbuilt.html"
4
5 vulcanize("vulcanize") {
6 host = "bookmarks"
7 html_in_file = "bookmarks.html"
8 html_out_file = vulcanized_unbuilt
9
10 input = rebase_path(".", root_build_dir)
11 js_out_file = "crisper.js"
12
13 deps = []
14 }
15
16 polymer_css_build("build") {
17 input_files = [ vulcanized_unbuilt ]
18 output_files = [ "vulcanized.html" ]
19 deps = [
20 ":vulcanize",
calamity 2017/05/29 07:26:51 optional nit: remove comma.
tsergeant 2017/05/30 00:35:51 This comma is placed there by `git cl format`, for
21 ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698