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 static_library("unsafe_resource") { | 5 static_library("security_interstitial_page") { |
6 sources = [ | 6 sources = [ |
| 7 "security_interstitial_controller_client.cc", |
| 8 "security_interstitial_controller_client.h", |
| 9 "security_interstitial_page.cc", |
| 10 "security_interstitial_page.h", |
7 "unsafe_resource.cc", | 11 "unsafe_resource.cc", |
8 "unsafe_resource.h", | 12 "unsafe_resource.h", |
9 ] | 13 ] |
10 | 14 |
11 public_deps = [ | 15 public_deps = [ |
12 "//components/safe_browsing_db:hit_report", | 16 "//components/safe_browsing_db:hit_report", |
13 ] | 17 ] |
14 | 18 |
15 deps = [ | 19 deps = [ |
16 "//base", | 20 "//base", |
| 21 "//components/prefs:prefs", |
| 22 "//components/resources", |
| 23 "//components/safe_browsing_db:hit_report", |
| 24 "//components/safe_browsing_db:safe_browsing_prefs", |
17 "//components/safe_browsing_db:util", | 25 "//components/safe_browsing_db:util", |
| 26 "//components/security_interstitials/core:core", |
18 "//content/public/browser", | 27 "//content/public/browser", |
| 28 "//content/public/common", |
19 ] | 29 ] |
20 } | 30 } |
OLD | NEW |