| 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 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 Loading... |
| 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 } |
| OLD | NEW |