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

Side by Side Diff: crypto/crypto.gyp

Issue 7056026: Implement AES-CTR for NSS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: endian Created 9 years, 6 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ], 102 ],
103 },], 103 },],
104 ], 104 ],
105 'sources': [ 105 'sources': [
106 'capi_util.cc', 106 'capi_util.cc',
107 'capi_util.h', 107 'capi_util.h',
108 'crypto_api.h', 108 'crypto_api.h',
109 'crypto_module_blocking_password_delegate.h', 109 'crypto_module_blocking_password_delegate.h',
110 'cssm_init.cc', 110 'cssm_init.cc',
111 'cssm_init.h', 111 'cssm_init.h',
112 'encryptor.cc',
112 'encryptor.h', 113 'encryptor.h',
113 'encryptor_mac.cc', 114 'encryptor_mac.cc',
114 'encryptor_nss.cc', 115 'encryptor_nss.cc',
115 'encryptor_openssl.cc', 116 'encryptor_openssl.cc',
116 'encryptor_win.cc', 117 'encryptor_win.cc',
117 'hmac.cc', 118 'hmac.cc',
118 'hmac.h', 119 'hmac.h',
119 'hmac_mac.cc', 120 'hmac_mac.cc',
120 'hmac_nss.cc', 121 'hmac_nss.cc',
121 'hmac_openssl.cc', 122 'hmac_openssl.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 }], 212 }],
212 [ 'use_openssl==1', { 213 [ 'use_openssl==1', {
213 'sources!': [ 214 'sources!': [
214 'rsa_private_key_nss_unittest.cc', 215 'rsa_private_key_nss_unittest.cc',
215 ], 216 ],
216 }], 217 }],
217 ], 218 ],
218 }, 219 },
219 ], 220 ],
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698