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

Unified Diff: remoting/remoting.gyp

Issue 1759313002: Implement authenticator based on SPAKE2 implementation in boringssl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: remoting/remoting.gyp
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 79057768c017b464574591f1d6d71be6e0615edf..1b96b5279b577cb08369ca10c8bf85d541e34856 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -236,6 +236,7 @@
'../crypto/crypto.gyp:crypto',
'../jingle/jingle.gyp:jingle_glue',
'../net/net.gyp:net',
+ '../third_party/boringssl/boringssl.gyp:boringssl',
'../third_party/expat/expat.gyp:expat',
'../third_party/libjingle/libjingle.gyp:libjingle',
'../third_party/libyuv/libyuv.gyp:libyuv',
@@ -250,12 +251,21 @@
'<@(remoting_signaling_sources)',
],
'conditions': [
- ['enable_webrtc==1', {
+ ['enable_webrtc == 1', {
'dependencies': [
'../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
'../third_party/libjingle/libjingle.gyp:libpeerconnection',
],
}],
+ ['use_openssl == 0', {
+ 'dependencies!': [
+ '../third_party/boringssl/boringssl.gyp:boringssl',
+ ],
+ 'sources!': [
+ 'protocol/spake2_authenticator.cc',
+ 'protocol/spake2_authenticator.h',
+ ],
+ }],
],
}, # end of target 'remoting_protocol'
], # end of targets

Powered by Google App Engine
This is Rietveld 408576698