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

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

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: Created 4 years, 2 months 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_state/content/BUILD.gn
diff --git a/components/security_state/content/BUILD.gn b/components/security_state/content/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..c3d6fb233f84906cb1736f283be7f1559fcd1686
--- /dev/null
+++ b/components/security_state/content/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+static_library("content") {
+ sources = [
+ "web_contents_security_state_model_client.cc",
+ "web_contents_security_state_model_client.h",
+ ]
+
+ public_deps = [
+ "//components/security_state/core",
+ ]
+
+ deps = [
+ "//base",
+ "//components/strings",
+ "//content/public/browser",
+ "//content/public/common",
+ "//net",
+ "//third_party/WebKit/public:blink_headers",
+ "//ui/base",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698