| OLD | NEW |
| 1 import("../vulcanize.gni") | 1 import("../vulcanize.gni") |
| 2 | 2 |
| 3 vulcanize("vulcanize") { | 3 vulcanize("vulcanize") { |
| 4 deps = [] | 4 deps = [] |
| 5 host = "downloads" | 5 host = "downloads" |
| 6 html_in_file = "downloads.html" | 6 html_in_file = "downloads.html" |
| 7 html_out_file = "vulcanized.html" | 7 html_out_file = "vulcanized.unbuilt.html" |
| 8 input = rebase_path(".", root_build_dir) | 8 input = rebase_path(".", root_build_dir) |
| 9 insert_in_head = "<base href=chrome://downloads>" | 9 insert_in_head = "<base href=chrome://downloads>" |
| 10 js_out_file = "crisper.js" | 10 js_out_file = "crisper.js" |
| 11 } | 11 } |
| 12 |
| 13 css_build("build") { |
| 14 input_files = [ "vulcanized.unbuilt.html" ] |
| 15 output_files = [ "vulcanized.html" ] |
| 16 deps = [ |
| 17 ":vulcanize", |
| 18 ] |
| 19 } |
| OLD | NEW |