blob: 443f7e7a6d760d8718b330fb68d662ba4eb0001c [file] [log] [blame]
# 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.gyp
source_set("ssl_errors") {
sources = [
"error_classification.cc",
"error_classification.h",
"error_info.cc",
"error_info.h",
]
deps = [
"//base",
"//base:i18n",
"//components/strings",
"//components/url_formatter",
"//net",
"//ui/base",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"error_classification_unittest.cc",
]
deps = [
":ssl_errors",
"//base",
"//net:test_support",
"//testing/gtest",
]
}