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

Unified Diff: crypto/crypto.gyp

Issue 956613002: Reland "Cut down /crypto and switch what is left of it to boringssl". (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase. Created 5 years, 10 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 | « crypto/capi_util.cc ('k') | crypto/crypto.gypi » ('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
deleted file mode 100644
index 632c498eb09ff100dc8328d97d5d6840f38905c5..0000000000000000000000000000000000000000
--- a/crypto/crypto.gyp
+++ /dev/null
@@ -1,318 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
- 'includes': [
- 'crypto.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'crypto',
- 'type': '<(component)',
- 'product_name': 'crcrypto', # Avoid colliding with OpenSSL's libcrypto
- 'dependencies': [
- '../base/base.gyp:base',
- '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- ],
- 'defines': [
- 'CRYPTO_IMPLEMENTATION',
- ],
- 'conditions': [
- [ 'os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
- 'dependencies': [
- '../build/linux/system.gyp:ssl',
- ],
- 'export_dependent_settings': [
- '../build/linux/system.gyp:ssl',
- ],
- 'conditions': [
- [ 'chromeos==1', {
- 'sources/': [ ['include', '_chromeos\\.cc$'] ]
- },
- ],
- ],
- }, { # os_posix != 1 or OS == "mac" or OS == "ios" or OS == "android"
- 'sources!': [
- 'hmac_win.cc',
- 'symmetric_key_win.cc',
- ],
- }],
- [ 'OS != "mac" and OS != "ios"', {
- 'sources!': [
- 'apple_keychain.h',
- 'mock_apple_keychain.cc',
- 'mock_apple_keychain.h',
- ],
- }],
- [ 'OS == "android"', {
- 'includes': [
- '../build/android/cpufeatures.gypi',
- ],
- }],
- [ 'os_bsd==1', {
- 'link_settings': {
- 'libraries': [
- '-L/usr/local/lib -lexecinfo',
- ],
- },
- },
- ],
- [ 'OS == "mac"', {
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/Security.framework',
- ],
- },
- }, { # OS != "mac"
- 'sources!': [
- 'cssm_init.cc',
- 'cssm_init.h',
- 'mac_security_services_lock.cc',
- 'mac_security_services_lock.h',
- ],
- }],
- [ 'use_openssl == 0 and (OS == "mac" or OS == "ios" or OS == "win")', {
- 'dependencies': [
- '../third_party/nss/nss.gyp:nspr',
- '../third_party/nss/nss.gyp:nss',
- ],
- 'export_dependent_settings': [
- '../third_party/nss/nss.gyp:nspr',
- '../third_party/nss/nss.gyp:nss',
- ],
- }],
- [ 'OS != "win"', {
- 'sources!': [
- 'capi_util.h',
- 'capi_util.cc',
- ],
- }],
- [ 'OS == "win"', {
- 'msvs_disabled_warnings': [
- 4267, # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 4018,
- ],
- }],
- [ 'use_openssl==1', {
- 'dependencies': [
- '../third_party/boringssl/boringssl.gyp:boringssl',
- ],
- # TODO(joth): Use a glob to match exclude patterns once the
- # OpenSSL file set is complete.
- 'sources!': [
- 'ec_private_key_nss.cc',
- 'ec_signature_creator_nss.cc',
- 'encryptor_nss.cc',
- 'hmac_nss.cc',
- 'nss_util.cc',
- 'nss_util.h',
- 'nss_util_internal.h',
- 'rsa_private_key_nss.cc',
- 'secure_hash_default.cc',
- 'signature_creator_nss.cc',
- 'signature_verifier_nss.cc',
- 'symmetric_key_nss.cc',
- 'third_party/nss/chromium-blapi.h',
- 'third_party/nss/chromium-blapit.h',
- 'third_party/nss/chromium-nss.h',
- 'third_party/nss/chromium-prtypes.h',
- 'third_party/nss/chromium-sha256.h',
- 'third_party/nss/pk11akey.cc',
- 'third_party/nss/rsawrapr.c',
- 'third_party/nss/secsign.cc',
- 'third_party/nss/sha512.cc',
- ],
- }, {
- 'sources!': [
- 'ec_private_key_openssl.cc',
- 'ec_signature_creator_openssl.cc',
- 'encryptor_openssl.cc',
- 'hmac_openssl.cc',
- 'openssl_bio_string.cc',
- 'openssl_bio_string.h',
- 'openssl_util.cc',
- 'openssl_util.h',
- 'rsa_private_key_openssl.cc',
- 'secure_hash_openssl.cc',
- 'signature_creator_openssl.cc',
- 'signature_verifier_openssl.cc',
- 'symmetric_key_openssl.cc',
- ],
- },],
- ],
- 'sources': [
- '<@(crypto_sources)',
- ],
- },
- {
- 'target_name': 'crypto_unittests',
- 'type': 'executable',
- 'sources': [
- 'curve25519_unittest.cc',
- 'ec_private_key_unittest.cc',
- 'ec_signature_creator_unittest.cc',
- 'encryptor_unittest.cc',
- 'ghash_unittest.cc',
- 'hkdf_unittest.cc',
- 'hmac_unittest.cc',
- 'nss_util_unittest.cc',
- 'openssl_bio_string_unittest.cc',
- 'p224_unittest.cc',
- 'p224_spake_unittest.cc',
- 'random_unittest.cc',
- 'rsa_private_key_unittest.cc',
- 'rsa_private_key_nss_unittest.cc',
- 'secure_hash_unittest.cc',
- 'sha2_unittest.cc',
- 'signature_creator_unittest.cc',
- 'signature_verifier_unittest.cc',
- 'symmetric_key_unittest.cc',
- ],
- 'dependencies': [
- 'crypto',
- 'crypto_test_support',
- '../base/base.gyp:base',
- '../base/base.gyp:run_all_unittests',
- '../base/base.gyp:test_support_base',
- '../testing/gmock.gyp:gmock',
- '../testing/gtest.gyp:gtest',
- ],
- 'conditions': [
- [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
- 'conditions': [
- [ 'use_allocator!="none"', {
- 'dependencies': [
- '../base/allocator/allocator.gyp:allocator',
- ],
- },
- ],
- ],
- 'dependencies': [
- '../build/linux/system.gyp:ssl',
- ],
- }, { # os_posix != 1 or OS == "mac" or OS == "android" or OS == "ios"
- 'sources!': [
- 'rsa_private_key_nss_unittest.cc',
- ]
- }],
- [ 'use_openssl == 0 and (OS == "mac" or OS == "ios" or OS == "win")', {
- 'dependencies': [
- '../third_party/nss/nss.gyp:nspr',
- ],
- }],
- [ 'OS == "win"', {
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [4267, ],
- }],
- [ 'use_openssl==1', {
- 'dependencies': [
- '../third_party/boringssl/boringssl.gyp:boringssl',
- ],
- 'sources!': [
- 'nss_util_unittest.cc',
- 'rsa_private_key_nss_unittest.cc',
- ],
- }, {
- 'sources!': [
- 'openssl_bio_string_unittest.cc',
- ],
- }],
- ],
- },
- ],
- 'conditions': [
- ['OS == "win" and target_arch=="ia32"', {
- 'targets': [
- {
- 'target_name': 'crypto_nacl_win64',
- # We do not want nacl_helper to depend on NSS because this would
- # require including a 64-bit copy of NSS. Thus, use the native APIs
- # for the helper.
- 'type': '<(component)',
- 'dependencies': [
- '../base/base.gyp:base_win64',
- '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
- ],
- 'sources': [
- '<@(hmac_win64_related_sources)',
- ],
- 'defines': [
- 'CRYPTO_IMPLEMENTATION',
- '<@(nacl_win64_defines)',
- ],
- 'msvs_disabled_warnings': [
- 4018,
- ],
- 'configurations': {
- 'Common_Base': {
- 'msvs_target_platform': 'x64',
- },
- },
- },
- ],
- }],
- ['use_nss==1', {
- 'targets': [
- {
- 'target_name': 'crypto_test_support',
- 'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- 'crypto',
- ],
- 'sources': [
- 'scoped_test_nss_db.cc',
- 'scoped_test_nss_db.h',
- 'scoped_test_nss_chromeos_user.cc',
- 'scoped_test_nss_chromeos_user.h',
- 'scoped_test_system_nss_key_slot.cc',
- 'scoped_test_system_nss_key_slot.h',
- ],
- 'conditions': [
- ['use_nss==0', {
- 'sources!': [
- 'scoped_test_nss_db.cc',
- 'scoped_test_nss_db.h',
- ],
- }],
- [ 'chromeos==0', {
- 'sources!': [
- 'scoped_test_nss_chromeos_user.cc',
- 'scoped_test_nss_chromeos_user.h',
- 'scoped_test_system_nss_key_slot.cc',
- 'scoped_test_system_nss_key_slot.h',
- ],
- }],
- ],
- }
- ]}, { # use_nss==0
- 'targets': [
- {
- 'target_name': 'crypto_test_support',
- 'type': 'none',
- 'sources': [],
- }
- ]}],
- ['test_isolation_mode != "noop"', {
- 'targets': [
- {
- 'target_name': 'crypto_unittests_run',
- 'type': 'none',
- 'dependencies': [
- 'crypto_unittests',
- ],
- 'includes': [
- '../build/isolate.gypi',
- ],
- 'sources': [
- 'crypto_unittests.isolate',
- ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « crypto/capi_util.cc ('k') | crypto/crypto.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698