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