mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
26 lines
736 B
Plaintext
26 lines
736 B
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")
|
||
|
|
||
|
js_type_check("closure_compile") {
|
||
|
deps = [
|
||
|
":site_settings_page",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("site_settings_page") {
|
||
|
deps = [
|
||
|
"..:route",
|
||
|
"../site_settings:constants",
|
||
|
"../site_settings:site_settings_behavior",
|
||
|
"../site_settings:site_settings_prefs_browser_proxy",
|
||
|
"//ui/webui/resources/js:assert",
|
||
|
"//ui/webui/resources/js:cr",
|
||
|
"//ui/webui/resources/js:load_time_data",
|
||
|
"//ui/webui/resources/js:web_ui_listener_behavior",
|
||
|
"//ui/webui/resources/js/cr/ui:focus_without_ink",
|
||
|
]
|
||
|
}
|