| Index: crypto/crypto.gyp
|
| diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp
|
| index 3f1b4ba14f4792a1993b89ffc748571736688273..c8e0c5e53463ef3eb27098e9951706fdc7223cc3 100644
|
| --- a/crypto/crypto.gyp
|
| +++ b/crypto/crypto.gyp
|
| @@ -22,7 +22,7 @@
|
| 4018,
|
| ],
|
| 'conditions': [
|
| - [ 'os_posix == 1 and OS != "mac"', {
|
| + [ 'os_posix == 1 and OS != "mac" and OS != "android"', {
|
| 'dependencies': [
|
| '../build/linux/system.gyp:ssl',
|
| ],
|
| @@ -35,7 +35,7 @@
|
| },
|
| ],
|
| ],
|
| - }, { # os_posix != 1 or OS == "mac"
|
| + }, { # os_posix != 1 or OS == "mac" or OS == "android"
|
| 'sources/': [
|
| ['exclude', '_nss\.cc$'],
|
| ['include', 'ec_private_key_nss\.cc$'],
|
| @@ -44,6 +44,14 @@
|
| 'openpgp_symmetric_encryption.cc',
|
| ],
|
| }],
|
| + [ 'OS == "android"', {
|
| + 'dependencies': [
|
| + '../build/android/system.gyp:ssl',
|
| + ],
|
| + 'sources/': [
|
| + ['exclude', 'ec_private_key_nss\.cc$'],
|
| + ],
|
| + }],
|
| [ 'OS == "freebsd" or OS == "openbsd"', {
|
| 'link_settings': {
|
| 'libraries': [
|
|
|