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

Side by Side Diff: crypto/crypto.gyp

Issue 401153002: Switch to BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across DEPS change Created 6 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 | Annotate | Revision Log
« no previous file with comments | « crypto/BUILD.gn ('k') | crypto/crypto_nacl.gyp » ('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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'capi_util.h', 93 'capi_util.h',
94 'capi_util.cc', 94 'capi_util.cc',
95 ], 95 ],
96 }], 96 }],
97 [ 'OS == "win"', { 97 [ 'OS == "win"', {
98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
99 'msvs_disabled_warnings': [4267, ], 99 'msvs_disabled_warnings': [4267, ],
100 }], 100 }],
101 [ 'use_openssl==1', { 101 [ 'use_openssl==1', {
102 'dependencies': [ 102 'dependencies': [
103 '../third_party/openssl/openssl.gyp:openssl', 103 '../third_party/boringssl/boringssl.gyp:boringssl',
104 ], 104 ],
105 # TODO(joth): Use a glob to match exclude patterns once the 105 # TODO(joth): Use a glob to match exclude patterns once the
106 # OpenSSL file set is complete. 106 # OpenSSL file set is complete.
107 'sources!': [ 107 'sources!': [
108 'ec_private_key_nss.cc', 108 'ec_private_key_nss.cc',
109 'ec_signature_creator_nss.cc', 109 'ec_signature_creator_nss.cc',
110 'encryptor_nss.cc', 110 'encryptor_nss.cc',
111 'hmac_nss.cc', 111 'hmac_nss.cc',
112 'nss_util.cc', 112 'nss_util.cc',
113 'nss_util.h', 113 'nss_util.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'dependencies': [ 202 'dependencies': [
203 '../third_party/nss/nss.gyp:nspr', 203 '../third_party/nss/nss.gyp:nspr',
204 ], 204 ],
205 }], 205 }],
206 [ 'OS == "win"', { 206 [ 'OS == "win"', {
207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
208 'msvs_disabled_warnings': [4267, ], 208 'msvs_disabled_warnings': [4267, ],
209 }], 209 }],
210 [ 'use_openssl==1', { 210 [ 'use_openssl==1', {
211 'dependencies': [ 211 'dependencies': [
212 '../third_party/openssl/openssl.gyp:openssl', 212 '../third_party/boringssl/boringssl.gyp:boringssl',
213 ], 213 ],
214 'sources!': [ 214 'sources!': [
215 'nss_util_unittest.cc', 215 'nss_util_unittest.cc',
216 'rsa_private_key_nss_unittest.cc', 216 'rsa_private_key_nss_unittest.cc',
217 ], 217 ],
218 }, { 218 }, {
219 'sources!': [ 219 'sources!': [
220 'openssl_bio_string_unittest.cc', 220 'openssl_bio_string_unittest.cc',
221 ], 221 ],
222 }], 222 }],
(...skipping 26 matching lines...) Expand all
249 'configurations': { 249 'configurations': {
250 'Common_Base': { 250 'Common_Base': {
251 'msvs_target_platform': 'x64', 251 'msvs_target_platform': 'x64',
252 }, 252 },
253 }, 253 },
254 }, 254 },
255 ], 255 ],
256 }], 256 }],
257 ], 257 ],
258 } 258 }
OLDNEW
« no previous file with comments | « crypto/BUILD.gn ('k') | crypto/crypto_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698