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

Side by Side Diff: crypto/crypto.gyp

Issue 1083493003: Encrypt certificate reports before uploading to HTTP URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add aead files to BUILD.gn Created 5 years, 8 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 | « crypto/aead_openssl_unittest.cc ('k') | crypto/crypto.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'crypto.gypi', 10 'crypto.gypi',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'third_party/nss/chromium-nss.h', 118 'third_party/nss/chromium-nss.h',
119 'third_party/nss/chromium-prtypes.h', 119 'third_party/nss/chromium-prtypes.h',
120 'third_party/nss/chromium-sha256.h', 120 'third_party/nss/chromium-sha256.h',
121 'third_party/nss/pk11akey.cc', 121 'third_party/nss/pk11akey.cc',
122 'third_party/nss/rsawrapr.c', 122 'third_party/nss/rsawrapr.c',
123 'third_party/nss/secsign.cc', 123 'third_party/nss/secsign.cc',
124 'third_party/nss/sha512.cc', 124 'third_party/nss/sha512.cc',
125 ], 125 ],
126 }, { 126 }, {
127 'sources!': [ 127 'sources!': [
128 'aead_openssl.cc',
129 'aead_openssl.h',
128 'ec_private_key_openssl.cc', 130 'ec_private_key_openssl.cc',
129 'ec_signature_creator_openssl.cc', 131 'ec_signature_creator_openssl.cc',
130 'encryptor_openssl.cc', 132 'encryptor_openssl.cc',
131 'hmac_openssl.cc', 133 'hmac_openssl.cc',
132 'openssl_bio_string.cc', 134 'openssl_bio_string.cc',
133 'openssl_bio_string.h', 135 'openssl_bio_string.h',
134 'openssl_util.cc', 136 'openssl_util.cc',
135 'openssl_util.h', 137 'openssl_util.h',
136 'rsa_private_key_openssl.cc', 138 'rsa_private_key_openssl.cc',
137 'secure_hash_openssl.cc', 139 'secure_hash_openssl.cc',
(...skipping 13 matching lines...) Expand all
151 },], 153 },],
152 ], 154 ],
153 'sources': [ 155 'sources': [
154 '<@(crypto_sources)', 156 '<@(crypto_sources)',
155 ], 157 ],
156 }, 158 },
157 { 159 {
158 'target_name': 'crypto_unittests', 160 'target_name': 'crypto_unittests',
159 'type': 'executable', 161 'type': 'executable',
160 'sources': [ 162 'sources': [
163 'aead_openssl_unittest.cc',
161 'curve25519_unittest.cc', 164 'curve25519_unittest.cc',
162 'ec_private_key_unittest.cc', 165 'ec_private_key_unittest.cc',
163 'ec_signature_creator_unittest.cc', 166 'ec_signature_creator_unittest.cc',
164 'encryptor_unittest.cc', 167 'encryptor_unittest.cc',
165 'ghash_unittest.cc', 168 'ghash_unittest.cc',
166 'hkdf_unittest.cc', 169 'hkdf_unittest.cc',
167 'hmac_unittest.cc', 170 'hmac_unittest.cc',
168 'nss_util_unittest.cc', 171 'nss_util_unittest.cc',
169 'openssl_bio_string_unittest.cc', 172 'openssl_bio_string_unittest.cc',
170 'p224_unittest.cc', 173 'p224_unittest.cc',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 '../build/isolate.gypi', 320 '../build/isolate.gypi',
318 ], 321 ],
319 'sources': [ 322 'sources': [
320 'crypto_unittests.isolate', 323 'crypto_unittests.isolate',
321 ], 324 ],
322 }, 325 },
323 ], 326 ],
324 }], 327 }],
325 ], 328 ],
326 } 329 }
OLDNEW
« no previous file with comments | « crypto/aead_openssl_unittest.cc ('k') | crypto/crypto.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698