# Copyright 2026 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("model") {
  sources = [
    "x509_certificate_model.cc",
    "x509_certificate_model.h",
  ]
  deps = [
    "//base",
    "//components/certificate_model",
    "//components/strings",
    "//crypto",
    "//ios/chrome/app/strings",
    "//net",
    "//third_party/boringssl",
    "//ui/base",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "x509_certificate_model_unittest.cc" ]
  deps = [
    ":model",
    "//base/test:test_support",
    "//net",
    "//net:test_support",
    "//testing/gtest",
  ]
}
