mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
# 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("//third_party/closure_compiler/compile_js.gni")
|
|
|
|
group("closure_compile") {
|
|
deps = [
|
|
":chromeos_resources",
|
|
"network:closure_compile",
|
|
"quick_unlock:closure_compile",
|
|
]
|
|
}
|
|
|
|
js_type_check("chromeos_resources") {
|
|
deps = [
|
|
":bluetooth_dialog",
|
|
]
|
|
}
|
|
|
|
js_library("bluetooth_dialog") {
|
|
deps = [
|
|
"//third_party/polymer/v1_0/components-chromium/iron-resizable-behavior:iron-resizable-behavior-extracted",
|
|
"//third_party/polymer/v1_0/components-chromium/paper-input:paper-input-extracted",
|
|
"//ui/webui/resources/cr_elements/cr_dialog:cr_dialog",
|
|
"//ui/webui/resources/js:assert",
|
|
"//ui/webui/resources/js:cr",
|
|
"//ui/webui/resources/js:i18n_behavior",
|
|
]
|
|
externs_list = [
|
|
"$externs_path/bluetooth.js",
|
|
"$externs_path/bluetooth_private.js",
|
|
]
|
|
extra_sources = [
|
|
"$interfaces_path/bluetooth_interface.js",
|
|
"$interfaces_path/bluetooth_private_interface.js",
|
|
]
|
|
}
|