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

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

Issue 2936333002: WebUI: Replace vulcanize with polymer-bundler (Closed)
Patch Set: Address comments. 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 unified diff | Download patch
OLDNEW
1 import("../vulcanize.gni") 1 import("../vulcanize.gni")
2 2
3 vulcanized_unbuilt = "vulcanized.unbuilt.html" 3 vulcanized_unbuilt = "vulcanized.unbuilt.html"
4 4
5 vulcanize("vulcanize") { 5 vulcanize("vulcanize") {
6 deps = [] 6 deps = []
7 host = "downloads" 7 host = "downloads"
8 html_in_file = "downloads.html" 8 html_in_files = [ "downloads.html" ]
9 html_out_file = vulcanized_unbuilt 9 html_out_files = [ vulcanized_unbuilt ]
10 input = rebase_path(".", root_build_dir) 10 input = rebase_path(".", root_build_dir)
11 insert_in_head = "<base href=chrome://downloads>" 11 insert_in_head = "<base href=chrome://downloads>"
12 js_out_file = "crisper.js" 12 js_out_files = [ "crisper.js" ]
13 } 13 }
14 14
15 polymer_css_build("build") { 15 polymer_css_build("build") {
16 input_files = [ vulcanized_unbuilt ] 16 input_files = [ vulcanized_unbuilt ]
17 output_files = [ "vulcanized.html" ] 17 output_files = [ "vulcanized.html" ]
18 deps = [ 18 deps = [
19 ":vulcanize", 19 ":vulcanize",
20 ] 20 ]
21 } 21 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/bookmarks.html ('k') | chrome/browser/resources/md_history/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698