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

Unified Diff: third_party/boringssl/boringssl.gyp

Issue 1924093006: Removing crypto/third_party/nss/ and removing crypto _win files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused sources. Created 4 years, 8 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 | « net/cert/x509_util_nss.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/boringssl.gyp
diff --git a/third_party/boringssl/boringssl.gyp b/third_party/boringssl/boringssl.gyp
index f1a9384da09d1ac7419541429d733d819f2f97bf..311fee43834f5739ff1df3ad18351125e06afead 100644
--- a/third_party/boringssl/boringssl.gyp
+++ b/third_party/boringssl/boringssl.gyp
@@ -8,6 +8,49 @@
],
'targets': [
{
+ 'target_name': 'boringssl_nacl_win64',
+ 'type': '<(component)',
+ 'sources': [
+ '<@(boringssl_crypto_sources)',
+ ],
+ 'defines': [
+ 'BORINGSSL_IMPLEMENTATION',
+ 'BORINGSSL_NO_STATIC_INITIALIZER',
+ 'OPENSSL_NO_ASM',
+ 'OPENSSL_SMALL',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ # TODO(davidben): Fix size_t truncations in BoringSSL.
+ # https://crbug.com/429039
+ 'msvs_disabled_warnings': [ 4267, ],
+ 'conditions': [
+ ['component == "shared_library"', {
+ 'defines': [
+ 'BORINGSSL_SHARED_LIBRARY',
+ ],
+ }],
+ ],
+ 'include_dirs': [
+ 'src/include',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'src/include',
+ ],
+ 'conditions': [
+ ['component == "shared_library"', {
+ 'defines': [
+ 'BORINGSSL_SHARED_LIBRARY',
+ ],
+ }],
+ ],
+ },
+ },
+ {
'target_name': 'boringssl',
'type': '<(component)',
'sources': [
« no previous file with comments | « net/cert/x509_util_nss.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698