Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 import("../vulcanize.gni") | 1 import("../vulcanize.gni") |
| 2 | 2 |
| 3 vulcanize("vulcanize_app") { | 3 vulcanize("vulcanize_app") { |
| 4 host = "history" | 4 host = "history" |
| 5 html_in_file = "app.html" | 5 html_in_file = "app.html" |
| 6 html_out_file = "app.vulcanized.html" | 6 html_out_file = "app.vulcanized.unbuilt.html" |
| 7 | 7 |
| 8 input = rebase_path(".", root_build_dir) | 8 input = rebase_path(".", root_build_dir) |
| 9 js_out_file = "app.crisper.js" | 9 js_out_file = "app.crisper.js" |
| 10 | 10 |
| 11 excludes = [ | 11 excludes = [ |
| 12 "chrome://resources/html/util.html", | 12 "chrome://resources/html/util.html", |
| 13 "chrome://history/constants.html", | 13 "chrome://history/constants.html", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [] | 16 deps = [] |
| 17 } | 17 } |
| 18 | 18 |
| 19 vulcanize("vulcanize_lazy_load") { | 19 vulcanize("vulcanize_lazy_load") { |
| 20 host = "history" | 20 host = "history" |
| 21 html_in_file = "lazy_load.html" | 21 html_in_file = "lazy_load.html" |
| 22 html_out_file = "lazy_load.vulcanized.html" | 22 html_out_file = "lazy_load.vulcanized.unbuilt.html" |
| 23 | 23 |
| 24 input = rebase_path(".", root_build_dir) | 24 input = rebase_path(".", root_build_dir) |
| 25 js_out_file = "lazy_load.crisper.js" | 25 js_out_file = "lazy_load.crisper.js" |
| 26 excludes = [ | 26 excludes = [ |
| 27 "chrome://resources/html/util.html", | 27 "chrome://resources/html/util.html", |
| 28 "chrome://history/constants.html", | 28 "chrome://history/constants.html", |
| 29 "chrome://history/app.html", | 29 "chrome://history/app.html", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [] | 32 deps = [] |
| 33 } | 33 } |
| 34 | |
| 35 css_build("build") { | |
| 36 input_files = [ | |
| 37 "lazy_load.vulcanized.unbuilt.html", | |
|
dpapad
2017/02/16 18:58:09
Can lazy_load.vulcanized.unbuilt.html and app.vulc
calamity
2017/02/17 00:24:04
Done.
| |
| 38 "app.vulcanized.unbuilt.html", | |
| 39 ] | |
| 40 output_files = [ | |
| 41 "lazy_load.vulcanized.html", | |
| 42 "app.vulcanized.html", | |
| 43 ] | |
| 44 deps = [ | |
| 45 ":vulcanize_app", | |
| 46 ":vulcanize_lazy_load", | |
| 47 ] | |
| 48 } | |
| OLD | NEW |