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

Side by Side Diff: third_party/libjingle/libjingle.gyp

Issue 401153002: Switch to BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across DEPS change Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/boringssl/update_gypi_and_asm.py ('k') | third_party/libjingle/libjingle_nacl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'enabled_libjingle_device_manager%': 0, 10 'enabled_libjingle_device_manager%': 0,
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'conditions': [ 151 'conditions': [
152 ['"<(libpeer_target_type)"=="static_library"', { 152 ['"<(libpeer_target_type)"=="static_library"', {
153 'defines': [ 'LIBPEERCONNECTION_LIB=1' ], 153 'defines': [ 'LIBPEERCONNECTION_LIB=1' ],
154 }], 154 }],
155 ['use_openssl==1', { 155 ['use_openssl==1', {
156 'defines': [ 156 'defines': [
157 'SSL_USE_OPENSSL', 157 'SSL_USE_OPENSSL',
158 'HAVE_OPENSSL_SSL_H', 158 'HAVE_OPENSSL_SSL_H',
159 ], 159 ],
160 'dependencies': [ 160 'dependencies': [
161 '../../third_party/openssl/openssl.gyp:openssl', 161 '../../third_party/boringssl/boringssl.gyp:boringssl',
162 ], 162 ],
163 }, { 163 }, {
164 'defines': [ 164 'defines': [
165 'SSL_USE_NSS', 165 'SSL_USE_NSS',
166 'HAVE_NSS_SSL_H', 166 'HAVE_NSS_SSL_H',
167 'SSL_USE_NSS_RNG', 167 'SSL_USE_NSS_RNG',
168 ], 168 ],
169 'conditions': [ 169 'conditions': [
170 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 170 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
171 'dependencies': [ 171 'dependencies': [
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 # in this directory and not lib.target as will otherwise be 648 # in this directory and not lib.target as will otherwise be
649 # the case with make builds. 649 # the case with make builds.
650 'product_dir': '<(PRODUCT_DIR)/lib', 650 'product_dir': '<(PRODUCT_DIR)/lib',
651 }], 651 }],
652 ], 652 ],
653 }, # target libpeerconnection 653 }, # target libpeerconnection
654 ], 654 ],
655 }], 655 }],
656 ], 656 ],
657 } 657 }
OLDNEW
« no previous file with comments | « third_party/boringssl/update_gypi_and_asm.py ('k') | third_party/libjingle/libjingle_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698