mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 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")
|
||
|
|
||
|
js_type_check("closure_compile") {
|
||
|
deps = [
|
||
|
":personalization_options",
|
||
|
":privacy_page",
|
||
|
":privacy_page_browser_proxy",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("personalization_options") {
|
||
|
deps = [
|
||
|
":privacy_page_browser_proxy",
|
||
|
"..:page_visibility",
|
||
|
"..:route",
|
||
|
"../controls:settings_toggle_button",
|
||
|
"//ui/webui/resources/js:web_ui_listener_behavior",
|
||
|
]
|
||
|
externs_list = [ "$externs_path/settings_private.js" ]
|
||
|
}
|
||
|
|
||
|
js_library("privacy_page_browser_proxy") {
|
||
|
deps = [
|
||
|
"..:lifetime_browser_proxy",
|
||
|
"//ui/webui/resources/js:cr",
|
||
|
]
|
||
|
externs_list = [ "$externs_path/chrome_send.js" ]
|
||
|
}
|
||
|
|
||
|
js_library("privacy_page") {
|
||
|
deps = [
|
||
|
":privacy_page_browser_proxy",
|
||
|
"..:page_visibility",
|
||
|
"..:route",
|
||
|
"../controls:settings_toggle_button",
|
||
|
"../settings_page:settings_animated_pages",
|
||
|
"../site_settings:constants",
|
||
|
"../site_settings:site_data_details_subpage",
|
||
|
"//ui/webui/resources/js:assert",
|
||
|
"//ui/webui/resources/js:i18n_behavior",
|
||
|
"//ui/webui/resources/js:web_ui_listener_behavior",
|
||
|
"//ui/webui/resources/js/cr/ui:focus_without_ink",
|
||
|
]
|
||
|
externs_list = [ "$externs_path/settings_private.js" ]
|
||
|
}
|