Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: net/BUILD.gn

Issue 348803003: Refactor tcp socket and unix domain socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert the behavior change of calling RecordFastOpenStatus() Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 10
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 "dns/record_parsed.cc", 428 "dns/record_parsed.cc",
429 "dns/record_parsed.h", 429 "dns/record_parsed.h",
430 "dns/record_rdata.cc", 430 "dns/record_rdata.cc",
431 "dns/record_rdata.h", 431 "dns/record_rdata.h",
432 ] 432 ]
433 } 433 }
434 434
435 if (is_win) { 435 if (is_win) {
436 sources -= [ 436 sources -= [
437 "http/http_auth_handler_ntlm_portable.cc", 437 "http/http_auth_handler_ntlm_portable.cc",
438 "socket/socket_libevent.cc",
439 "socket/socket_libevent.h",
438 "socket/tcp_socket_libevent.cc", 440 "socket/tcp_socket_libevent.cc",
439 "socket/tcp_socket_libevent.h", 441 "socket/tcp_socket_libevent.h",
440 "udp/udp_socket_libevent.cc", 442 "udp/udp_socket_libevent.cc",
441 "udp/udp_socket_libevent.h", 443 "udp/udp_socket_libevent.h",
442 ] 444 ]
443 deps += [ 445 deps += [
444 "//third_party/nss:nspr", 446 "//third_party/nss:nspr",
445 "//third_party/nss", 447 "//third_party/nss",
446 ] 448 ]
447 } else { # !is_win 449 } else { # !is_win
(...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
1316 sources = [ "quic/quic_server_bin.cc" ] 1318 sources = [ "quic/quic_server_bin.cc" ]
1317 deps = [ 1319 deps = [
1318 ":quic_tools", 1320 ":quic_tools",
1319 ":net", 1321 ":net",
1320 "//base", 1322 "//base",
1321 "//third_party/openssl", 1323 "//third_party/openssl",
1322 ] 1324 ]
1323 } 1325 }
1324 1326
1325 } # !is_android 1327 } # !is_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698