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

Side by Side Diff: chrome/browser/resources/md_bookmarks/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
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/bookmarks.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 host = "bookmarks" 6 host = "bookmarks"
7 html_in_file = "bookmarks.html" 7 html_in_files = [ "bookmarks.html" ]
8 html_out_file = vulcanized_unbuilt 8 html_out_files = [ vulcanized_unbuilt ]
9 9
10 input = rebase_path(".", root_build_dir) 10 input = rebase_path(".", root_build_dir)
11 js_out_file = "crisper.js" 11 js_out_files = [ "crisper.js" ]
12 12
13 deps = [] 13 deps = []
14 } 14 }
15 15
16 polymer_css_build("build") { 16 polymer_css_build("build") {
17 input_files = [ vulcanized_unbuilt ] 17 input_files = [ vulcanized_unbuilt ]
18 output_files = [ "vulcanized.html" ] 18 output_files = [ "vulcanized.html" ]
19 deps = [ 19 deps = [
20 ":vulcanize", 20 ":vulcanize",
21 ] 21 ]
22 } 22 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/bookmarks.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698