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

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: 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') | crypto/rsa_private_key_ios.cc » ('J')
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..01ba8bd32ba5d15c397bb48d923617ad805a8e49 100644
--- a/crypto/crypto.gyp
+++ b/crypto/crypto.gyp
@@ -156,6 +156,13 @@
],
},],
],
+ 'target_conditions' : [
stuartmorgan 2012/08/14 10:00:39 For posterity: the reason this is in a target_cond
+ [ 'OS == "ios"', {
+ 'sources!': [
stuartmorgan 2012/08/14 10:00:39 Indent this whole block 2 less.
msarda 2012/08/14 12:55:16 Done.
+ '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.
+ ],
+ }],
+ ],
'sources': [
# NOTE: all transitive dependencies of HMAC on windows need
# to be placed in the source list above.
@@ -201,6 +208,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') | crypto/rsa_private_key_ios.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698