OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 # GYP version: components/certificate_reporting.gyp:certificate_reporting | 7 # GYP version: components/certificate_reporting.gyp:certificate_reporting |
8 static_library("certificate_reporting") { | 8 static_library("certificate_reporting") { |
9 sources = [ | 9 sources = [ |
10 "cert_logger.proto", | 10 "cert_logger.proto", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 source_set("unit_tests") { | 44 source_set("unit_tests") { |
45 testonly = true | 45 testonly = true |
46 sources = [ | 46 sources = [ |
47 "error_report_unittest.cc", | 47 "error_report_unittest.cc", |
48 "error_reporter_unittest.cc", | 48 "error_reporter_unittest.cc", |
49 ] | 49 ] |
50 | 50 |
51 deps = [ | 51 deps = [ |
52 ":certificate_reporting", | 52 ":certificate_reporting", |
53 "//base", | 53 "//base", |
| 54 "//content/test:test_support", |
54 "//net:test_support", | 55 "//net:test_support", |
55 "//testing/gtest", | 56 "//testing/gtest", |
56 ] | 57 ] |
57 } | 58 } |
OLD | NEW |