| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |