summaryrefslogtreecommitdiff
path: root/chromium/components/ssl_errors/BUILD.gn
blob: 7ed952b84b8b7e5f9964e872efd762fa7c33d49f (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
# Copyright 2015 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.

# GYP version: components/ssl_errors.gypi
source_set("ssl_errors") {
  sources = [
    "error_classification.cc",
    "error_classification.h",
    "error_info.cc",
    "error_info.h",
  ]

  deps = [
    "//base",
    "//base:i18n",
    "//components/network_time",
    "//components/strings",
    "//components/url_formatter",
    "//net",
    "//ui/base",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "error_classification_unittest.cc",
  ]

  deps = [
    ":ssl_errors",
    "//base",
    "//components/network_time",
    "//components/prefs:test_support",
    "//net:test_support",
    "//testing/gtest",
  ]
}