| OLD | NEW |
| (Empty) | |
| 1 import("../vulcanize.gni") |
| 2 |
| 3 vulcanize("vulcanize_app") { |
| 4 host = "history" |
| 5 html_in_file = "app.html" |
| 6 html_out_file = "app.vulcanized.html" |
| 7 |
| 8 input = rebase_path(".", root_build_dir) |
| 9 js_out_file = "app.crisper.js" |
| 10 |
| 11 excludes = [ |
| 12 "chrome://resources/html/util.html", |
| 13 "chrome://history/constants.html", |
| 14 ] |
| 15 |
| 16 deps = [] |
| 17 } |
| 18 |
| 19 vulcanize("vulcanize_lazy_load") { |
| 20 host = "history" |
| 21 html_in_file = "lazy_load.html" |
| 22 html_out_file = "lazy_load.vulcanized.html" |
| 23 |
| 24 input = rebase_path(".", root_build_dir) |
| 25 js_out_file = "lazy_load.crisper.js" |
| 26 excludes = [ |
| 27 "chrome://resources/html/util.html", |
| 28 "chrome://history/constants.html", |
| 29 "chrome://history/app.html", |
| 30 ] |
| 31 |
| 32 deps = [] |
| 33 } |
| OLD | NEW |