mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-29 00:36:10 +03:00
50 lines
1.1 KiB
Plaintext
50 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")
|
||
|
|
||
|
js_type_check("closure_compile") {
|
||
|
deps = [
|
||
|
":powerwash_dialog",
|
||
|
":reset_browser_proxy",
|
||
|
":reset_page",
|
||
|
":reset_profile_dialog",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("powerwash_dialog") {
|
||
|
deps = [
|
||
|
":reset_browser_proxy",
|
||
|
"..:lifetime_browser_proxy",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("reset_page") {
|
||
|
deps = [
|
||
|
":reset_profile_dialog",
|
||
|
"..:route",
|
||
|
"//ui/webui/resources/cr_elements/cr_lazy_render:cr_lazy_render",
|
||
|
"//ui/webui/resources/js:assert",
|
||
|
"//ui/webui/resources/js:cr",
|
||
|
"//ui/webui/resources/js:load_time_data",
|
||
|
"//ui/webui/resources/js/cr/ui:focus_without_ink",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
js_library("reset_browser_proxy") {
|
||
|
deps = [
|
||
|
"//ui/webui/resources/js:cr",
|
||
|
]
|
||
|
externs_list = [ "$externs_path/chrome_send.js" ]
|
||
|
}
|
||
|
|
||
|
js_library("reset_profile_dialog") {
|
||
|
deps = [
|
||
|
":reset_browser_proxy",
|
||
|
"..:route",
|
||
|
"//ui/webui/resources/js:load_time_data",
|
||
|
"//ui/webui/resources/js:web_ui_listener_behavior",
|
||
|
]
|
||
|
}
|