Chromium Code Reviews| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 -= [ |
| 340 "http/http_auth_handler_ntlm_portable.cc", | 340 "http/http_auth_handler_ntlm_portable.cc", |
| 341 "socket/socket_libevent.cc", | 341 "socket/socket_posix.cc", |
| 342 "socket/socket_libevent.h", | 342 "socket/socket_posix.h", |
| 343 "socket/tcp_socket_libevent.cc", | 343 "socket/tcp_socket_posix.cc", |
| 344 "socket/tcp_socket_libevent.h", | 344 "socket/tcp_socket_posix.h", |
| 345 "udp/udp_socket_libevent.cc", | 345 "udp/udp_socket_posix.cc", |
| 346 "udp/udp_socket_libevent.h", | 346 "udp/udp_socket_posix.h", |
| 347 ] | 347 ] |
|
mmenke
2015/09/14 15:12:44
With the posix suffix, we no longer need this extr
tfarina
2015/09/14 15:46:02
Done.
| |
| 348 } else { # !is_win | 348 } else { # !is_win |
| 349 net_shared_sources -= [ | 349 net_shared_sources -= [ |
| 350 "base/winsock_init.cc", | 350 "base/winsock_init.cc", |
| 351 "base/winsock_init.h", | 351 "base/winsock_init.h", |
| 352 "base/winsock_util.cc", | 352 "base/winsock_util.cc", |
| 353 "base/winsock_util.h", | 353 "base/winsock_util.h", |
| 354 "proxy/proxy_resolver_winhttp.cc", | 354 "proxy/proxy_resolver_winhttp.cc", |
| 355 "proxy/proxy_resolver_winhttp.h", | 355 "proxy/proxy_resolver_winhttp.h", |
| 356 ] | 356 ] |
| 357 } | 357 } |
| (...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1665 if (enable_websockets) { | 1665 if (enable_websockets) { |
| 1666 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1666 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1667 } | 1667 } |
| 1668 | 1668 |
| 1669 if (use_v8_in_net) { | 1669 if (use_v8_in_net) { |
| 1670 deps += [ ":net_with_v8" ] | 1670 deps += [ ":net_with_v8" ] |
| 1671 } else { | 1671 } else { |
| 1672 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1672 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1673 } | 1673 } |
| 1674 } | 1674 } |
| OLD | NEW |