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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « components/security_state/BUILD.gn ('k') | components/security_state/content/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 static_library("content") {
6 sources = [
7 "content_utils.cc",
8 "content_utils.h",
9 ]
10
11 public_deps = [
12 "//components/security_state/core",
13 ]
14
15 deps = [
16 "//base",
17 "//components/strings",
18 "//content/public/browser",
19 "//content/public/common",
20 "//net",
21 "//third_party/WebKit/public:blink_headers",
22 "//ui/base",
23 ]
24 }
25
26 source_set("unit_tests") {
27 testonly = true
28 sources = [
29 "content_utils_unittest.cc",
30 ]
31
32 deps = [
33 ":content",
34 "//base",
35 "//base/test:test_support",
36 "//components/security_state/core",
37 "//content/public/browser",
38 "//content/test:test_support",
39 "//net",
40 "//testing/gtest",
41 ]
42 }
OLDNEW
« 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