blob: fe04cca466fbc9caac2f39a2a885f7c6fdb91763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//chrome/browser/resources/tools/build_webui.gni")
build_webui("build") {
grd_prefix = "quota_internals"
static_files = [
"quota_internals.html",
"quota_internals.css",
]
non_web_component_files = [
"quota_internals.ts",
"quota_internals_browser_proxy.ts",
]
mojo_files_deps = [ "//storage/browser/quota:mojo_bindings_webui_js" ]
mojo_files = [ "$root_gen_dir/mojom-webui/storage/browser/quota/quota_internals.mojom-webui.js" ]
ts_deps = [
"//ui/webui/resources:library",
"//ui/webui/resources/mojo:library",
]
grit_output_dir = "$root_gen_dir/content"
}
|