mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
27 lines
457 B
Plaintext
27 lines
457 B
Plaintext
import("../optimize_webui.gni")
|
|
|
|
optimize_webui("build") {
|
|
host = "history"
|
|
html_in_files = [
|
|
"app.html",
|
|
"lazy_load.html",
|
|
]
|
|
html_out_files = [
|
|
"app.vulcanized.html",
|
|
"lazy_load.vulcanized.html",
|
|
]
|
|
|
|
input = rebase_path(".", root_build_dir)
|
|
js_out_files = [
|
|
"app.crisper.js",
|
|
"lazy_load.crisper.js",
|
|
]
|
|
|
|
excludes = [
|
|
"chrome://resources/html/util.html",
|
|
"chrome://history/constants.html",
|
|
]
|
|
|
|
deps = []
|
|
}
|