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