Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: components/certificate_reporting/BUILD.gn

Issue 2964283002: Add chrome channel to cert logger reports (Closed)
Patch Set: Fix build errors Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/ssl/ssl_browser_tests.cc ('k') | components/certificate_reporting/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 static_library("certificate_reporting") { 7 static_library("certificate_reporting") {
8 sources = [ 8 sources = [
9 "cert_logger.proto", 9 "cert_logger.proto",
10 "encrypted_cert_logger.proto", 10 "encrypted_cert_logger.proto",
11 "error_report.cc", 11 "error_report.cc",
12 "error_report.h", 12 "error_report.h",
13 "error_reporter.cc", 13 "error_reporter.cc",
14 "error_reporter.h", 14 "error_reporter.h",
15 ] 15 ]
16 16
17 public_deps = [ 17 public_deps = [
18 ":cert_logger_proto", 18 ":cert_logger_proto",
19 ":encrypted_cert_logger_proto", 19 ":encrypted_cert_logger_proto",
20 ] 20 ]
21 deps = [ 21 deps = [
22 "//base", 22 "//base",
23 "//components/network_time", 23 "//components/network_time",
24 "//components/version_info",
24 "//crypto", 25 "//crypto",
25 "//net", 26 "//net",
26 "//url", 27 "//url",
27 ] 28 ]
28 } 29 }
29 30
30 proto_library("cert_logger_proto") { 31 proto_library("cert_logger_proto") {
31 sources = [ 32 sources = [
32 "cert_logger.proto", 33 "cert_logger.proto",
33 ] 34 ]
(...skipping 11 matching lines...) Expand all
45 "error_report_unittest.cc", 46 "error_report_unittest.cc",
46 "error_reporter_unittest.cc", 47 "error_reporter_unittest.cc",
47 ] 48 ]
48 49
49 deps = [ 50 deps = [
50 ":certificate_reporting", 51 ":certificate_reporting",
51 "//base", 52 "//base",
52 "//components/network_time", 53 "//components/network_time",
53 "//components/network_time:network_time_test_support", 54 "//components/network_time:network_time_test_support",
54 "//components/prefs:test_support", 55 "//components/prefs:test_support",
56 "//components/version_info",
55 "//net:test_support", 57 "//net:test_support",
56 "//testing/gtest", 58 "//testing/gtest",
57 ] 59 ]
58 } 60 }
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_browser_tests.cc ('k') | components/certificate_reporting/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698