| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "dns/mdns_client_impl.cc", | 329 "dns/mdns_client_impl.cc", |
| 330 "dns/mdns_client_impl.h", | 330 "dns/mdns_client_impl.h", |
| 331 "dns/record_parsed.cc", | 331 "dns/record_parsed.cc", |
| 332 "dns/record_parsed.h", | 332 "dns/record_parsed.h", |
| 333 "dns/record_rdata.cc", | 333 "dns/record_rdata.cc", |
| 334 "dns/record_rdata.h", | 334 "dns/record_rdata.h", |
| 335 ] | 335 ] |
| 336 } | 336 } |
| 337 | 337 |
| 338 if (is_win) { | 338 if (is_win) { |
| 339 net_shared_sources -= [ | 339 net_shared_sources -= [ "http/http_auth_handler_ntlm_portable.cc" ] |
| 340 "http/http_auth_handler_ntlm_portable.cc", | |
| 341 "socket/socket_libevent.cc", | |
| 342 "socket/socket_libevent.h", | |
| 343 "socket/tcp_socket_libevent.cc", | |
| 344 "socket/tcp_socket_libevent.h", | |
| 345 "udp/udp_socket_libevent.cc", | |
| 346 "udp/udp_socket_libevent.h", | |
| 347 ] | |
| 348 } else { # !is_win | 340 } else { # !is_win |
| 349 net_shared_sources -= [ | 341 net_shared_sources -= [ |
| 350 "base/winsock_init.cc", | 342 "base/winsock_init.cc", |
| 351 "base/winsock_init.h", | 343 "base/winsock_init.h", |
| 352 "base/winsock_util.cc", | 344 "base/winsock_util.cc", |
| 353 "base/winsock_util.h", | 345 "base/winsock_util.h", |
| 354 "proxy/proxy_resolver_winhttp.cc", | 346 "proxy/proxy_resolver_winhttp.cc", |
| 355 "proxy/proxy_resolver_winhttp.h", | 347 "proxy/proxy_resolver_winhttp.h", |
| 356 ] | 348 ] |
| 357 } | 349 } |
| (...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1665 if (enable_websockets) { | 1657 if (enable_websockets) { |
| 1666 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1658 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1667 } | 1659 } |
| 1668 | 1660 |
| 1669 if (use_v8_in_net) { | 1661 if (use_v8_in_net) { |
| 1670 deps += [ ":net_with_v8" ] | 1662 deps += [ ":net_with_v8" ] |
| 1671 } else { | 1663 } else { |
| 1672 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1664 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1673 } | 1665 } |
| 1674 } | 1666 } |
| OLD | NEW |