mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 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 = [
|
|
":chrome_cleanup_page",
|
|
":chrome_cleanup_proxy",
|
|
":items_to_remove_list",
|
|
]
|
|
}
|
|
|
|
js_library("chrome_cleanup_proxy") {
|
|
deps = [
|
|
"//ui/webui/resources/js:assert",
|
|
"//ui/webui/resources/js:cr",
|
|
]
|
|
}
|
|
|
|
js_library("chrome_cleanup_page") {
|
|
deps = [
|
|
":chrome_cleanup_proxy",
|
|
"//ui/webui/resources/cr_elements/cr_expand_button:cr_expand_button",
|
|
"//ui/webui/resources/js:cr",
|
|
"//ui/webui/resources/js:i18n_behavior",
|
|
"//ui/webui/resources/js:load_time_data",
|
|
"//ui/webui/resources/js:util",
|
|
"//ui/webui/resources/js:web_ui_listener_behavior",
|
|
]
|
|
externs_list = [ "$externs_path/settings_private.js" ]
|
|
}
|
|
|
|
js_library("items_to_remove_list") {
|
|
deps = [
|
|
":chrome_cleanup_proxy",
|
|
"//ui/webui/resources/js:cr",
|
|
]
|
|
}
|