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

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: Addressed comments and fixed unittests for chrome os. 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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 "proxy/proxy_script_fetcher_impl_unittest.cc", 1274 "proxy/proxy_script_fetcher_impl_unittest.cc",
1273 "socket/ssl_client_socket_unittest.cc", 1275 "socket/ssl_client_socket_unittest.cc",
1274 "url_request/url_fetcher_impl_unittest.cc", 1276 "url_request/url_fetcher_impl_unittest.cc",
1275 "url_request/url_request_context_builder_unittest.cc", 1277 "url_request/url_request_context_builder_unittest.cc",
1276 # Needs GetAppOutput(). 1278 # Needs GetAppOutput().
1277 "test/python_utils_unittest.cc", 1279 "test/python_utils_unittest.cc",
1278 1280
1279 # The following tests are disabled because they don't apply to 1281 # The following tests are disabled because they don't apply to
1280 # iOS. 1282 # iOS.
1281 # OS is not "linux" or "freebsd" or "openbsd". 1283 # OS is not "linux" or "freebsd" or "openbsd".
1282 "socket/unix_domain_socket_posix_unittest.cc", 1284 "socket/unix_domain_client_socket_posix_unittest.cc",
1285 "socket/unix_domain_listen_socket_posix_unittest.cc",
1286 "socket/unix_domain_server_socket_posix_unittest.cc",
1283 1287
1284 # See bug http://crbug.com/344533. 1288 # See bug http://crbug.com/344533.
1285 "disk_cache/blockfile/index_table_v3_unittest.cc", 1289 "disk_cache/blockfile/index_table_v3_unittest.cc",
1286 ] 1290 ]
1287 } 1291 }
1288 1292
1289 if (is_android) { 1293 if (is_android) {
1290 sources -= [ 1294 sources -= [
1291 "dns/dns_config_service_posix_unittest.cc", 1295 "dns/dns_config_service_posix_unittest.cc",
1292 ] 1296 ]
(...skipping 22 matching lines...) Expand all
1315 sources = [ "quic/quic_server_bin.cc" ] 1319 sources = [ "quic/quic_server_bin.cc" ]
1316 deps = [ 1320 deps = [
1317 ":quic_tools", 1321 ":quic_tools",
1318 ":net", 1322 ":net",
1319 "//base", 1323 "//base",
1320 "//third_party/openssl", 1324 "//third_party/openssl",
1321 ] 1325 ]
1322 } 1326 }
1323 1327
1324 } # !is_android 1328 } # !is_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698