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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
98 'sources': ['<@(net_ftp_support_sources)'] | 98 'sources': ['<@(net_ftp_support_sources)'] |
99 }], | 99 }], |
100 ['enable_built_in_dns==1', { | 100 ['enable_built_in_dns==1', { |
101 'defines': [ | 101 'defines': [ |
102 'ENABLE_BUILT_IN_DNS', | 102 'ENABLE_BUILT_IN_DNS', |
103 ] | 103 ] |
104 }, { # else | 104 }, { # else |
105 'sources!': [ | 105 'sources!': [ |
106 'dns/address_sorter_posix.cc', | 106 'dns/address_sorter_posix.cc', |
107 'dns/address_sorter_posix.h', | 107 'dns/address_sorter_posix.h', |
108 'dns/dns_client.cc', | |
Charlie Harrison
2016/07/27 17:59:47
Is this a tangential fix?
Julia Tuttle
2016/07/28 19:48:01
Leftover from the weird iOS fiddling I did before.
| |
109 ], | 108 ], |
110 }], | 109 }], |
111 [ 'use_nss_certs == 1', { | 110 [ 'use_nss_certs == 1', { |
112 'dependencies': [ | 111 'dependencies': [ |
113 '../build/linux/system.gyp:nss', | 112 '../build/linux/system.gyp:nss', |
114 ], | 113 ], |
115 }, { | 114 }, { |
116 'sources!': [ | 115 'sources!': [ |
117 'cert/x509_util_nss.h', | 116 'cert/x509_util_nss.h', |
118 ] | 117 ] |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
353 ['include', '^proxy/proxy_server_mac\\.cc$'], | 352 ['include', '^proxy/proxy_server_mac\\.cc$'], |
354 ], | 353 ], |
355 }], | 354 }], |
356 ['OS == "ios"', { | 355 ['OS == "ios"', { |
357 'sources/': [ | 356 'sources/': [ |
358 ['include', '^cert/test_root_certs_mac\\.cc$'], | 357 ['include', '^cert/test_root_certs_mac\\.cc$'], |
359 ], | 358 ], |
360 }], | 359 }], |
361 ], | 360 ], |
362 } | 361 } |
OLD | NEW |