summaryrefslogtreecommitdiff
path: root/chromium/components/security_state/content/BUILD.gn
blob: cb1077bff251d2b3130d1cb690652379444bffb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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",
    "ssl_status_input_event_data.cc",
    "ssl_status_input_event_data.h",
  ]

  public_deps = [
    "//components/security_interstitials/core",
    "//components/security_state/core",
  ]

  deps = [
    "//base",
    "//components/dom_distiller/core",
    "//components/strings",
    "//content/public/browser",
    "//content/public/common",
    "//net",
    "//third_party/blink/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",
    "//components/strings",
    "//content/public/browser",
    "//content/public/common",
    "//content/test:test_support",
    "//net",
    "//net:test_support",
    "//testing/gtest",
  ]
}