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