Index: components/security_interstitials/content/BUILD.gn |
diff --git a/components/security_interstitials/content/BUILD.gn b/components/security_interstitials/content/BUILD.gn |
index d044aaaae73f6585351cbc4bff1433f53922c59c..d2252c2708bbfed37b80f722ce174693b3fb69be 100644 |
--- a/components/security_interstitials/content/BUILD.gn |
+++ b/components/security_interstitials/content/BUILD.gn |
@@ -2,8 +2,12 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-static_library("unsafe_resource") { |
+static_library("security_interstitial_page") { |
sources = [ |
+ "security_interstitial_controller_client.cc", |
+ "security_interstitial_controller_client.h", |
+ "security_interstitial_page.cc", |
+ "security_interstitial_page.h", |
"unsafe_resource.cc", |
"unsafe_resource.h", |
] |
@@ -14,7 +18,13 @@ static_library("unsafe_resource") { |
deps = [ |
"//base", |
+ "//components/prefs:prefs", |
+ "//components/resources", |
+ "//components/safe_browsing_db:hit_report", |
+ "//components/safe_browsing_db:safe_browsing_prefs", |
"//components/safe_browsing_db:util", |
+ "//components/security_interstitials/core:core", |
"//content/public/browser", |
+ "//content/public/common", |
] |
} |