OLD | NEW |
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 } |
OLD | NEW |