| 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   'variables': { |     6   'variables': { | 
|     7     'conditions': [ |     7     'conditions': [ | 
|     8       ['sysroot!=""', { |     8       ['sysroot!=""', { | 
|     9         'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
      _arch)" "<(system_libdir)"', |     9         'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
      _arch)" "<(system_libdir)"', | 
|    10       }, { |    10       }, { | 
| (...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   978       ], |   978       ], | 
|   979     }, |   979     }, | 
|   980     { |   980     { | 
|   981       'target_name': 'ssl', |   981       'target_name': 'ssl', | 
|   982       'type': 'none', |   982       'type': 'none', | 
|   983       'conditions': [ |   983       'conditions': [ | 
|   984         ['_toolset=="target"', { |   984         ['_toolset=="target"', { | 
|   985           'conditions': [ |   985           'conditions': [ | 
|   986             ['use_openssl==1', { |   986             ['use_openssl==1', { | 
|   987               'dependencies': [ |   987               'dependencies': [ | 
|   988                 '../../third_party/openssl/openssl.gyp:openssl', |   988                 '../../third_party/boringssl/boringssl.gyp:boringssl', | 
|   989               ], |   989               ], | 
|   990             }], |   990             }], | 
|   991             ['use_openssl==0', { |   991             ['use_openssl==0', { | 
|   992               'dependencies': [ |   992               'dependencies': [ | 
|   993                 '../../net/third_party/nss/ssl.gyp:libssl', |   993                 '../../net/third_party/nss/ssl.gyp:libssl', | 
|   994               ], |   994               ], | 
|   995               'direct_dependent_settings': { |   995               'direct_dependent_settings': { | 
|   996                 'include_dirs+': [ |   996                 'include_dirs+': [ | 
|   997                   # We need for our local copies of the libssl3 headers to come |   997                   # We need for our local copies of the libssl3 headers to come | 
|   998                   # before other includes, as we are shadowing system headers. |   998                   # before other includes, as we are shadowing system headers. | 
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1041             ], |  1041             ], | 
|  1042             'libraries': [ |  1042             'libraries': [ | 
|  1043               '<!@(<(pkg-config) --libs-only-l libudev)', |  1043               '<!@(<(pkg-config) --libs-only-l libudev)', | 
|  1044             ], |  1044             ], | 
|  1045           }, |  1045           }, | 
|  1046         }], |  1046         }], | 
|  1047       ], |  1047       ], | 
|  1048     }, |  1048     }, | 
|  1049   ], |  1049   ], | 
|  1050 } |  1050 } | 
| OLD | NEW |