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

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

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: sync. Created 4 years, 1 month 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
« no previous file with comments | « components/security_state/BUILD.gn ('k') | components/security_state/content/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..1c046a9b332fc078cf57707b9daa01bcb54cf53d
--- /dev/null
+++ b/components/security_state/content/BUILD.gn
@@ -0,0 +1,42 @@
+# 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 = [
+ "content_utils.cc",
+ "content_utils.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",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "content_utils_unittest.cc",
+ ]
+
+ deps = [
+ ":content",
+ "//base",
+ "//base/test:test_support",
+ "//components/security_state/core",
+ "//content/public/browser",
+ "//content/test:test_support",
+ "//net",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/security_state/BUILD.gn ('k') | components/security_state/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698