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