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

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

Issue 11093061: Enable peerconnection to use the NSS RNG. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 | « net/socket/nss_ssl_util.h ('k') | no next file » | 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'Debug': { 124 'Debug': {
125 'defines': [ 125 'defines': [
126 # TODO(sergeyu): Fix libjingle to use NDEBUG instead of 126 # TODO(sergeyu): Fix libjingle to use NDEBUG instead of
127 # _DEBUG and remove this define. See above as well. 127 # _DEBUG and remove this define. See above as well.
128 '_DEBUG', 128 '_DEBUG',
129 ], 129 ],
130 } 130 }
131 }, 131 },
132 }, 132 },
133 'conditions': [ 133 'conditions': [
134 ['use_openssl!=1', {
135 'defines': [
136 'SSL_USE_NSS',
137 ],
138 'conditions': [
139 ['os_posix == 1 and OS != "mac" and OS != "ios" and '
140 'OS != "android"', {
141 'dependencies': [
142 '<(DEPTH)/build/linux/system.gyp:ssl',
143 ],
144 }],
145 ['OS == "mac" or OS == "ios" or OS == "win"', {
146 'dependencies': [
147 '<(DEPTH)/third_party/nss/nss.gyp:nspr',
148 '<(DEPTH)/third_party/nss/nss.gyp:nss',
149 ],
150 }],
151 ],
152 }],
134 ['OS=="win"', { 153 ['OS=="win"', {
135 'include_dirs': [ 154 'include_dirs': [
136 '../third_party/platformsdk_win7/files/Include', 155 '../third_party/platformsdk_win7/files/Include',
137 ], 156 ],
138 }], 157 }],
139 ['OS=="linux"', { 158 ['OS=="linux"', {
140 'defines': [ 159 'defines': [
141 'LINUX', 160 'LINUX',
142 ], 161 ],
143 }], 162 }],
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 ], 725 ],
707 'include_dirs': [ 726 'include_dirs': [
708 'source', 727 'source',
709 ], 728 ],
710 'dependencies': [ 729 'dependencies': [
711 'libjingle', 730 'libjingle',
712 ], 731 ],
713 }, # target peerconnection_server 732 }, # target peerconnection_server
714 ], 733 ],
715 } 734 }
OLDNEW
« no previous file with comments | « net/socket/nss_ssl_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698