OLD | NEW |
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 Loading... |
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' : [ |
| 160 [ 'OS == "ios"', { |
| 161 'sources!': [ |
| 162 # This class is stubbed out on iOS. |
| 163 'rsa_private_key.cc', |
| 164 ], |
| 165 }], |
| 166 ], |
159 'sources': [ | 167 'sources': [ |
160 # NOTE: all transitive dependencies of HMAC on windows need | 168 # NOTE: all transitive dependencies of HMAC on windows need |
161 # to be placed in the source list above. | 169 # to be placed in the source list above. |
162 '<@(hmac_win64_related_sources)', | 170 '<@(hmac_win64_related_sources)', |
163 'capi_util.cc', | 171 'capi_util.cc', |
164 'capi_util.h', | 172 'capi_util.h', |
165 'crypto_export.h', | 173 'crypto_export.h', |
166 'crypto_module_blocking_password_delegate.h', | 174 'crypto_module_blocking_password_delegate.h', |
167 'cssm_init.cc', | 175 'cssm_init.cc', |
168 'cssm_init.h', | 176 'cssm_init.h', |
(...skipping 25 matching lines...) Expand all Loading... |
194 'openpgp_symmetric_encryption.cc', | 202 'openpgp_symmetric_encryption.cc', |
195 'openpgp_symmetric_encryption.h', | 203 'openpgp_symmetric_encryption.h', |
196 'openssl_util.cc', | 204 'openssl_util.cc', |
197 'openssl_util.h', | 205 'openssl_util.h', |
198 'p224.cc', | 206 'p224.cc', |
199 'p224.h', | 207 'p224.h', |
200 'random.h', | 208 'random.h', |
201 'random.cc', | 209 'random.cc', |
202 'rsa_private_key.cc', | 210 'rsa_private_key.cc', |
203 'rsa_private_key.h', | 211 'rsa_private_key.h', |
| 212 'rsa_private_key_ios.cc', |
204 'rsa_private_key_mac.cc', | 213 'rsa_private_key_mac.cc', |
205 'rsa_private_key_nss.cc', | 214 'rsa_private_key_nss.cc', |
206 'rsa_private_key_openssl.cc', | 215 'rsa_private_key_openssl.cc', |
207 'rsa_private_key_win.cc', | 216 'rsa_private_key_win.cc', |
208 'scoped_capi_types.h', | 217 'scoped_capi_types.h', |
209 'scoped_nss_types.h', | 218 'scoped_nss_types.h', |
210 'secure_hash.h', | 219 'secure_hash.h', |
211 'secure_hash_default.cc', | 220 'secure_hash_default.cc', |
212 'secure_hash_openssl.cc', | 221 'secure_hash_openssl.cc', |
213 'sha2.cc', | 222 'sha2.cc', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 'configurations': { | 344 'configurations': { |
336 'Common_Base': { | 345 'Common_Base': { |
337 'msvs_target_platform': 'x64', | 346 'msvs_target_platform': 'x64', |
338 }, | 347 }, |
339 }, | 348 }, |
340 }, | 349 }, |
341 ], | 350 ], |
342 }], | 351 }], |
343 ], | 352 ], |
344 } | 353 } |
OLD | NEW |