OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("safe_browsing") { | 5 source_set("safe_browsing") { |
6 sources = [ | 6 sources = [ |
7 "base_safe_browsing_resource_throttle.cc", | 7 "base_blocking_page.cc", |
8 "base_safe_browsing_resource_throttle.h", | 8 "base_blocking_page.h", |
| 9 "base_resource_throttle.cc", |
| 10 "base_resource_throttle.h", |
9 "base_ui_manager.cc", | 11 "base_ui_manager.cc", |
10 "base_ui_manager.h", | 12 "base_ui_manager.h", |
11 ] | 13 ] |
12 | 14 |
13 deps = [ | 15 deps = [ |
14 "//base:base", | 16 "//base:base", |
| 17 "//base:i18n", |
15 "//components/safe_browsing_db:database_manager", | 18 "//components/safe_browsing_db:database_manager", |
| 19 "//components/safe_browsing_db:safe_browsing_prefs", |
16 "//components/security_interstitials/content:security_interstitial_page", | 20 "//components/security_interstitials/content:security_interstitial_page", |
| 21 "//components/security_interstitials/core:core", |
17 "//components/subresource_filter/content/browser:browser", | 22 "//components/subresource_filter/content/browser:browser", |
18 "//content/public/browser:browser", | 23 "//content/public/browser:browser", |
19 "//content/public/common:common", | 24 "//content/public/common:common", |
20 "//net:net", | 25 "//net:net", |
21 ] | 26 ] |
22 } | 27 } |
OLD | NEW |