| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This target is included by 'net' target. | 6 # This target is included by 'net' target. |
| 7 'type': '<(component)', | 7 'type': '<(component)', |
| 8 'variables': { 'enable_wexit_time_destructors': 1, }, | 8 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 ] | 102 ] |
| 103 }, { # else | 103 }, { # else |
| 104 'sources!': [ | 104 'sources!': [ |
| 105 'dns/address_sorter_posix.cc', | 105 'dns/address_sorter_posix.cc', |
| 106 'dns/address_sorter_posix.h', | 106 'dns/address_sorter_posix.h', |
| 107 'dns/dns_client.cc', | 107 'dns/dns_client.cc', |
| 108 ], | 108 ], |
| 109 }], | 109 }], |
| 110 [ 'use_nss_certs == 1', { | 110 [ 'use_nss_certs == 1', { |
| 111 'dependencies': [ | 111 'dependencies': [ |
| 112 '../build/linux/system.gyp:ssl', | 112 '../build/linux/system.gyp:nss', |
| 113 ], | 113 ], |
| 114 }, { | 114 }, { |
| 115 'sources!': [ | 115 'sources!': [ |
| 116 'cert/x509_util_nss.h', | 116 'cert/x509_util_nss.h', |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 ], | 119 ], |
| 120 ['chromecast==1 and use_nss_certs==1', { | 120 ['chromecast==1 and use_nss_certs==1', { |
| 121 'sources': [ | 121 'sources': [ |
| 122 'ssl/ssl_platform_key_chromecast.cc', | 122 'ssl/ssl_platform_key_chromecast.cc', |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ['include', '^proxy/proxy_server_mac\\.cc$'], | 355 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 356 ], | 356 ], |
| 357 }], | 357 }], |
| 358 ['OS == "ios"', { | 358 ['OS == "ios"', { |
| 359 'sources/': [ | 359 'sources/': [ |
| 360 ['include', '^cert/test_root_certs_mac\\.cc$'], | 360 ['include', '^cert/test_root_certs_mac\\.cc$'], |
| 361 ], | 361 ], |
| 362 }], | 362 }], |
| 363 ], | 363 ], |
| 364 } | 364 } |
| OLD | NEW |