Chromium Code Reviews| 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.unbuilt" | |
| 7 | |
| 8 input_type = "FOLDER" | |
| 9 input = rebase_path(".", root_build_dir) | |
| 10 js_out_file = "app.crisper.js" | |
| 11 | |
| 12 excludes = [ | |
| 13 "chrome://resources/html/util.html", | |
| 14 "chrome://history/constants.html", | |
| 15 ] | |
| 16 | |
| 17 deps = [] | |
| 18 } | |
| 19 | |
| 20 vulcanize("vulcanize_lazy_load") { | |
| 21 host = "history" | |
| 22 html_in_file = "lazy_load.html" | |
| 23 html_out_file = "lazy_load.vulcanized.html.unbuilt" | |
| 24 | |
| 25 input_type = "FOLDER" | |
| 26 input = rebase_path(".", root_build_dir) | |
| 27 js_out_file = "lazy_load.crisper.js" | |
| 28 excludes = [ "chrome://history/app.html" ] | |
| 29 | |
| 30 deps = [] | |
| 31 } | |
| 32 | |
| 33 css_build("build") { | |
|
dpapad
2017/02/02 22:08:45
I am trying to understand the necessity of splitti
| |
| 34 input_files = [ | |
| 35 "lazy_load.vulcanized.html.unbuilt", | |
| 36 "app.vulcanized.html.unbuilt", | |
| 37 ] | |
| 38 output_files = [ | |
| 39 "lazy_load.vulcanized.html", | |
| 40 "app.vulcanized.html", | |
| 41 ] | |
| 42 deps = [ | |
| 43 ":vulcanize_app", | |
| 44 ":vulcanize_lazy_load", | |
| 45 ] | |
| 46 } | |
| OLD | NEW |