Matt Mueller | 7f1d790 | 2025-01-21 22:34:37 | [diff] [blame] | 1 | # 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 | |
| 5 | import("//third_party/protobuf/proto_library.gni") |
| 6 | |
| 7 | proto_library("proto") { |
| 8 | sources = [ "server_certificate_database.proto" ] |
| 9 | } |
| 10 | |
| 11 | static_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 | ] |
|
|