blob: 386eaf976bf67530f9d5c6bfe9adce12b7ab7e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2018 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")
import("//chrome/common/features.gni")
assert(!is_android, "!is_android check failed")
build_webui("build") {
grd_prefix = "management"
static_files = [ "management.html" ]
web_component_files = [ "management_ui.ts" ]
non_web_component_files = [ "management_browser_proxy.ts" ]
icons_html_files = [ "icons.html" ]
ts_deps = [
"//third_party/polymer/v3_0:library",
"//ui/webui/resources:library",
]
}
|