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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 'sources': ['<@(net_websockets_sources)'] | 216 'sources': ['<@(net_websockets_sources)'] |
217 }], | 217 }], |
218 [ 'enable_mdns != 1', { | 218 [ 'enable_mdns != 1', { |
219 'sources!' : [ | 219 'sources!' : [ |
220 'dns/mdns_cache.cc', | 220 'dns/mdns_cache.cc', |
221 'dns/mdns_cache.h', | 221 'dns/mdns_cache.h', |
222 'dns/mdns_client.cc', | 222 'dns/mdns_client.cc', |
223 'dns/mdns_client.h', | 223 'dns/mdns_client.h', |
224 'dns/mdns_client_impl.cc', | 224 'dns/mdns_client_impl.cc', |
225 'dns/mdns_client_impl.h', | 225 'dns/mdns_client_impl.h', |
| 226 'dns/record_parsed.cc', |
| 227 'dns/record_parsed.h', |
| 228 'dns/record_rdata.cc', |
| 229 'dns/record_rdata.h', |
226 ] | 230 ] |
227 }], | 231 }], |
228 [ 'OS == "win"', { | 232 [ 'OS == "win"', { |
229 'sources!': [ | 233 'sources!': [ |
230 'http/http_auth_handler_ntlm_portable.cc', | 234 'http/http_auth_handler_ntlm_portable.cc', |
231 ], | 235 ], |
232 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 236 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
233 'msvs_disabled_warnings': [4267, ], | 237 'msvs_disabled_warnings': [4267, ], |
234 'all_dependent_settings': { | 238 'all_dependent_settings': { |
235 'msvs_settings': { | 239 'msvs_settings': { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 ['include', '^proxy/proxy_server_mac\\.cc$'], | 357 ['include', '^proxy/proxy_server_mac\\.cc$'], |
354 ], | 358 ], |
355 }], | 359 }], |
356 ['OS == "ios"', { | 360 ['OS == "ios"', { |
357 'sources/': [ | 361 'sources/': [ |
358 ['include', '^cert/test_root_certs_mac\\.cc$'], | 362 ['include', '^cert/test_root_certs_mac\\.cc$'], |
359 ], | 363 ], |
360 }], | 364 }], |
361 ], | 365 ], |
362 } | 366 } |
OLD | NEW |