| 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 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'crypto.gypi', | 10 'crypto.gypi', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ], | 47 ], |
| 48 }], | 48 }], |
| 49 [ 'OS != "mac" and OS != "ios"', { | 49 [ 'OS != "mac" and OS != "ios"', { |
| 50 'sources!': [ | 50 'sources!': [ |
| 51 'apple_keychain.h', | 51 'apple_keychain.h', |
| 52 'mock_apple_keychain.cc', | 52 'mock_apple_keychain.cc', |
| 53 'mock_apple_keychain.h', | 53 'mock_apple_keychain.h', |
| 54 ], | 54 ], |
| 55 }], | 55 }], |
| 56 [ 'OS == "android"', { | 56 [ 'OS == "android"', { |
| 57 'dependencies': [ | |
| 58 '../third_party/openssl/openssl.gyp:openssl', | |
| 59 ], | |
| 60 'sources/': [ | |
| 61 ['exclude', 'ec_private_key_nss\.cc$'], | |
| 62 ['exclude', 'ec_signature_creator_nss\.cc$'], | |
| 63 ['exclude', 'encryptor_nss\.cc$'], | |
| 64 ['exclude', 'hmac_nss\.cc$'], | |
| 65 ['exclude', 'signature_verifier_nss\.cc$'], | |
| 66 ['exclude', 'symmetric_key_nss\.cc$'], | |
| 67 ], | |
| 68 'includes': [ | 57 'includes': [ |
| 69 '../build/android/cpufeatures.gypi', | 58 '../build/android/cpufeatures.gypi', |
| 70 ], | 59 ], |
| 71 }], | 60 }], |
| 72 [ 'os_bsd==1', { | 61 [ 'os_bsd==1', { |
| 73 'link_settings': { | 62 'link_settings': { |
| 74 'libraries': [ | 63 'libraries': [ |
| 75 '-L/usr/local/lib -lexecinfo', | 64 '-L/usr/local/lib -lexecinfo', |
| 76 ], | 65 ], |
| 77 }, | 66 }, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 105 'sources!': [ | 94 'sources!': [ |
| 106 'capi_util.h', | 95 'capi_util.h', |
| 107 'capi_util.cc', | 96 'capi_util.cc', |
| 108 ], | 97 ], |
| 109 }], | 98 }], |
| 110 [ 'OS == "win"', { | 99 [ 'OS == "win"', { |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 112 'msvs_disabled_warnings': [4267, ], | 101 'msvs_disabled_warnings': [4267, ], |
| 113 }], | 102 }], |
| 114 [ 'use_openssl==1', { | 103 [ 'use_openssl==1', { |
| 104 'dependencies': [ |
| 105 '../third_party/openssl/openssl.gyp:openssl', |
| 106 ], |
| 115 # TODO(joth): Use a glob to match exclude patterns once the | 107 # TODO(joth): Use a glob to match exclude patterns once the |
| 116 # OpenSSL file set is complete. | 108 # OpenSSL file set is complete. |
| 117 'sources!': [ | 109 'sources!': [ |
| 118 'ec_private_key_nss.cc', | 110 'ec_private_key_nss.cc', |
| 119 'ec_signature_creator_nss.cc', | 111 'ec_signature_creator_nss.cc', |
| 120 'encryptor_nss.cc', | 112 'encryptor_nss.cc', |
| 121 'hmac_nss.cc', | 113 'hmac_nss.cc', |
| 122 'nss_util.cc', | 114 'nss_util.cc', |
| 123 'nss_util.h', | 115 'nss_util.h', |
| 124 'openpgp_symmetric_encryption.cc', | 116 'openpgp_symmetric_encryption.cc', |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 'configurations': { | 250 'configurations': { |
| 259 'Common_Base': { | 251 'Common_Base': { |
| 260 'msvs_target_platform': 'x64', | 252 'msvs_target_platform': 'x64', |
| 261 }, | 253 }, |
| 262 }, | 254 }, |
| 263 }, | 255 }, |
| 264 ], | 256 ], |
| 265 }], | 257 }], |
| 266 ], | 258 ], |
| 267 } | 259 } |
| OLD | NEW |