blob: e09e6f2aa7d7837cb8e08f37a028a588cf5bde74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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.
source_set("certificate_transparency") {
sources = [
"log_proof_fetcher.cc",
"log_proof_fetcher.h",
]
deps = [
"//base",
"//components/safe_json",
"//net",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"log_proof_fetcher_unittest.cc",
]
deps = [
":certificate_transparency",
"//base/test:test_support",
"//components/safe_json:test_support",
"//net:test_support",
"//testing/gtest",
]
}
|