blob: 1b765273b5ea569f00382d845a90f24cee550af7 [file] [log] [blame]
Matt Mueller7f1d7902025-01-21 22:34:371# Copyright 2024 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//third_party/protobuf/proto_library.gni")
6
7proto_library("proto") {
8 sources = [ "server_certificate_database.proto" ]
9}
10
11static_library("server_certificate_database") {
12 sources = [
13 "server_certificate_database.cc",
14 "server_certificate_database.h",
15 "server_certificate_database_service.cc",
16 "server_certificate_database_service.h",
17 ]
18
19 deps = [
20 "//base",
21 "//components/keyed_service/core",
22 "//components/prefs",
23 "//net",
24 "//sql",
25 "//third_party/boringssl",
26 ]