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

Unified 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: Address code review: Fix nits. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | crypto/rsa_private_key_ios.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/crypto.gyp
diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp
index 33b6b17fea3bc58049de9149ca20622c73deddde..40606a7de0867e021cda5fbdc62ef126650e0056 100644
--- a/crypto/crypto.gyp
+++ b/crypto/crypto.gyp
@@ -156,6 +156,14 @@
],
},],
],
+ 'target_conditions' : [
+ [ 'OS == "ios"', {
+ 'sources!': [
+ # This class is stubbed out on iOS.
+ 'rsa_private_key.cc',
+ ],
+ }],
+ ],
'sources': [
# NOTE: all transitive dependencies of HMAC on windows need
# to be placed in the source list above.
@@ -201,6 +209,7 @@
'random.cc',
'rsa_private_key.cc',
'rsa_private_key.h',
+ 'rsa_private_key_ios.cc',
'rsa_private_key_mac.cc',
'rsa_private_key_nss.cc',
'rsa_private_key_openssl.cc',
« no previous file with comments | « no previous file | crypto/rsa_private_key_ios.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698