BUILD.gn 898 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Copyright 2015 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. static_library("ssl_errors") {
  5. sources = [
  6. "error_classification.cc",
  7. "error_classification.h",
  8. "error_info.cc",
  9. "error_info.h",
  10. ]
  11. deps = [
  12. "//base",
  13. "//base:i18n",
  14. "//components/network_time",
  15. "//components/strings",
  16. "//components/url_formatter",
  17. "//net",
  18. "//ui/base",
  19. ]
  20. }
  21. source_set("unit_tests") {
  22. testonly = true
  23. sources = [ "error_classification_unittest.cc" ]
  24. deps = [
  25. ":ssl_errors",
  26. "//base",
  27. "//components/network_time",
  28. "//components/network_time:network_time_test_support",
  29. "//components/prefs:test_support",
  30. "//net:test_support",
  31. "//services/network:test_support",
  32. "//services/network/public/cpp:cpp",
  33. "//testing/gtest",
  34. ]
  35. }