blob: 8798ad554c72562ac1766c60281367dfea80f5db (
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
30
|
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//chrome/common/features.gni")
import("//third_party/closure_compiler/compile_js.gni")
import("//tools/grit/grit_rule.gni")
js_type_check("closure_compile") {
uses_js_modules = true
deps = [ ":about_webapks" ]
}
js_library("about_webapks") {
deps = [
"//ui/webui/resources/js:cr.m",
"//ui/webui/resources/js:util.m",
]
externs_list = [ "$externs_path/chrome_send.js" ]
}
grit("webapks_ui_resources") {
source = "webapks_ui_resources.grd"
defines = chrome_grit_defines
outputs = [
"grit/webapks_ui_resources.h",
"webapks_ui_resources.pak",
]
output_dir = "$root_gen_dir/chrome"
}
|