summaryrefslogtreecommitdiffstats
path: root/components/certificate_reporting.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'components/certificate_reporting.gypi')
-rw-r--r--components/certificate_reporting.gypi57
1 files changed, 0 insertions, 57 deletions
diff --git a/components/certificate_reporting.gypi b/components/certificate_reporting.gypi
deleted file mode 100644
index 87f9f50..0000000
--- a/components/certificate_reporting.gypi
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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.
-
-{
- 'targets': [
- {
- # GN version: //components/certificate_reporting
- 'target_name': 'certificate_reporting',
- 'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- '../crypto/crypto.gyp:crypto',
- '../net/net.gyp:net',
- '../url/url.gyp:url_lib',
- 'cert_logger_proto',
- 'encrypted_cert_logger_proto',
- ],
- 'include_dirs': [
- '..',
- ],
- 'sources': [
- # Note: sources list duplicated in GN build.
- "certificate_reporting/error_report.cc",
- "certificate_reporting/error_report.h",
- "certificate_reporting/error_reporter.cc",
- "certificate_reporting/error_reporter.h",
- ]
- },
- {
- # Protobuf compiler / generator for the certificate error reporting
- # protocol buffer.
- # GN version: //components/certificate_reporting:cert_logger_proto
- 'target_name': 'cert_logger_proto',
- 'type': 'static_library',
- 'sources': [ 'certificate_reporting/cert_logger.proto', ],
- 'variables': {
- 'proto_in_dir': 'certificate_reporting/',
- 'proto_out_dir': 'components/certificate_reporting/',
- },
- 'includes': [ '../build/protoc.gypi', ],
- },
- {
- # Protobuf compiler / generator for the encrypted certificate
- # reports protocol buffer.
- # GN version: //components/certificate_reporting:encrypted_cert_logger_proto
- 'target_name': 'encrypted_cert_logger_proto',
- 'type': 'static_library',
- 'sources': [ 'certificate_reporting/encrypted_cert_logger.proto', ],
- 'variables': {
- 'proto_in_dir': 'certificate_reporting/',
- 'proto_out_dir': 'components/certificate_reporting/',
- },
- 'includes': [ '../build/protoc.gypi', ],
- },
- ]
-}