Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Unified Diff: components/security_interstitials/content/BUILD.gn

Issue 2603433002: Move SecurityInterstitialPage into component (Closed)
Patch Set: nit, refind comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ff0b1eedaa03ed6ace3872697e04e761351c29a8 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,16 @@ 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",
+ "//ui/base:base",
+ "//ui/base:ui_data_pack",
+ "//url",
]
}

Powered by Google App Engine
This is Rietveld 408576698