Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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', { | |
|
Ronghua Wu (Left Chromium)
2012/10/15 00:32:22
Changed from "'OS!="android"". Make sense?
Ryan Sleevi
2012/10/15 17:58:39
Change SGTM, but it makes me think that you should
Ronghua Wu (Left Chromium)
2012/10/15 18:06:24
Good point. Done
| |
| 135 'defines': [ | |
| 136 'SSL_USE_NSS', | |
| 137 ], | |
| 138 }], | |
| 139 [ 'os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | |
| 140 'dependencies': [ | |
| 141 '<(DEPTH)/build/linux/system.gyp:ssl', | |
| 142 ], | |
| 143 }], | |
| 144 [ 'OS == "mac" or OS == "ios" or OS == "win"', { | |
| 145 'dependencies': [ | |
| 146 '<(DEPTH)/third_party/nss/nss.gyp:nspr', | |
| 147 '<(DEPTH)/third_party/nss/nss.gyp:nss', | |
| 148 ], | |
| 149 }], | |
| 134 ['OS=="win"', { | 150 ['OS=="win"', { |
| 135 'include_dirs': [ | 151 'include_dirs': [ |
| 136 '../third_party/platformsdk_win7/files/Include', | 152 '../third_party/platformsdk_win7/files/Include', |
| 137 ], | 153 ], |
| 138 }], | 154 }], |
| 139 ['OS=="linux"', { | 155 ['OS=="linux"', { |
| 140 'defines': [ | 156 'defines': [ |
| 141 'LINUX', | 157 'LINUX', |
| 142 ], | 158 ], |
| 143 }], | 159 }], |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 706 ], | 722 ], |
| 707 'include_dirs': [ | 723 'include_dirs': [ |
| 708 'source', | 724 'source', |
| 709 ], | 725 ], |
| 710 'dependencies': [ | 726 'dependencies': [ |
| 711 'libjingle', | 727 'libjingle', |
| 712 ], | 728 ], |
| 713 }, # target peerconnection_server | 729 }, # target peerconnection_server |
| 714 ], | 730 ], |
| 715 } | 731 } |
| OLD | NEW |