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

Side by Side Diff: crypto/crypto.gyp

Issue 10823309: Add RSAPrivateKey stub implementation for iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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 | « no previous file | crypto/rsa_private_key_ios.cc » ('j') | crypto/rsa_private_key_ios.cc » ('J')
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 # Put all transitive dependencies for Windows HMAC here. 8 # Put all transitive dependencies for Windows HMAC here.
9 # This is required so that we can build them for nacl win64. 9 # This is required so that we can build them for nacl win64.
10 'hmac_win64_related_sources': [ 10 'hmac_win64_related_sources': [
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 'openssl_util.cc', 149 'openssl_util.cc',
150 'openssl_util.h', 150 'openssl_util.h',
151 'rsa_private_key_openssl.cc', 151 'rsa_private_key_openssl.cc',
152 'secure_hash_openssl.cc', 152 'secure_hash_openssl.cc',
153 'signature_creator_openssl.cc', 153 'signature_creator_openssl.cc',
154 'signature_verifier_openssl.cc', 154 'signature_verifier_openssl.cc',
155 'symmetric_key_openssl.cc', 155 'symmetric_key_openssl.cc',
156 ], 156 ],
157 },], 157 },],
158 ], 158 ],
159 'target_conditions' : [
stuartmorgan 2012/08/14 10:00:39 For posterity: the reason this is in a target_cond
160 [ 'OS == "ios"', {
161 'sources!': [
stuartmorgan 2012/08/14 10:00:39 Indent this whole block 2 less.
msarda 2012/08/14 12:55:16 Done.
162 'rsa_private_key.cc',
stuartmorgan 2012/08/14 10:00:39 Add a comment above this line: # This class is stu
msarda 2012/08/14 12:55:16 Done.
163 ],
164 }],
165 ],
159 'sources': [ 166 'sources': [
160 # NOTE: all transitive dependencies of HMAC on windows need 167 # NOTE: all transitive dependencies of HMAC on windows need
161 # to be placed in the source list above. 168 # to be placed in the source list above.
162 '<@(hmac_win64_related_sources)', 169 '<@(hmac_win64_related_sources)',
163 'capi_util.cc', 170 'capi_util.cc',
164 'capi_util.h', 171 'capi_util.h',
165 'crypto_export.h', 172 'crypto_export.h',
166 'crypto_module_blocking_password_delegate.h', 173 'crypto_module_blocking_password_delegate.h',
167 'cssm_init.cc', 174 'cssm_init.cc',
168 'cssm_init.h', 175 'cssm_init.h',
(...skipping 25 matching lines...) Expand all
194 'openpgp_symmetric_encryption.cc', 201 'openpgp_symmetric_encryption.cc',
195 'openpgp_symmetric_encryption.h', 202 'openpgp_symmetric_encryption.h',
196 'openssl_util.cc', 203 'openssl_util.cc',
197 'openssl_util.h', 204 'openssl_util.h',
198 'p224.cc', 205 'p224.cc',
199 'p224.h', 206 'p224.h',
200 'random.h', 207 'random.h',
201 'random.cc', 208 'random.cc',
202 'rsa_private_key.cc', 209 'rsa_private_key.cc',
203 'rsa_private_key.h', 210 'rsa_private_key.h',
211 'rsa_private_key_ios.cc',
204 'rsa_private_key_mac.cc', 212 'rsa_private_key_mac.cc',
205 'rsa_private_key_nss.cc', 213 'rsa_private_key_nss.cc',
206 'rsa_private_key_openssl.cc', 214 'rsa_private_key_openssl.cc',
207 'rsa_private_key_win.cc', 215 'rsa_private_key_win.cc',
208 'scoped_capi_types.h', 216 'scoped_capi_types.h',
209 'scoped_nss_types.h', 217 'scoped_nss_types.h',
210 'secure_hash.h', 218 'secure_hash.h',
211 'secure_hash_default.cc', 219 'secure_hash_default.cc',
212 'secure_hash_openssl.cc', 220 'secure_hash_openssl.cc',
213 'sha2.cc', 221 'sha2.cc',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 'configurations': { 343 'configurations': {
336 'Common_Base': { 344 'Common_Base': {
337 'msvs_target_platform': 'x64', 345 'msvs_target_platform': 'x64',
338 }, 346 },
339 }, 347 },
340 }, 348 },
341 ], 349 ],
342 }], 350 }],
343 ], 351 ],
344 } 352 }
OLDNEW
« no previous file with comments | « no previous file | crypto/rsa_private_key_ios.cc » ('j') | crypto/rsa_private_key_ios.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698