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

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: Fix net_unittests for iOS Created 6 years, 6 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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 "proxy/proxy_script_fetcher_impl_unittest.cc", 1255 "proxy/proxy_script_fetcher_impl_unittest.cc",
1254 "socket/ssl_client_socket_unittest.cc", 1256 "socket/ssl_client_socket_unittest.cc",
1255 "url_request/url_fetcher_impl_unittest.cc", 1257 "url_request/url_fetcher_impl_unittest.cc",
1256 "url_request/url_request_context_builder_unittest.cc", 1258 "url_request/url_request_context_builder_unittest.cc",
1257 # Needs GetAppOutput(). 1259 # Needs GetAppOutput().
1258 "test/python_utils_unittest.cc", 1260 "test/python_utils_unittest.cc",
1259 1261
1260 # The following tests are disabled because they don't apply to 1262 # The following tests are disabled because they don't apply to
1261 # iOS. 1263 # iOS.
1262 # OS is not "linux" or "freebsd" or "openbsd". 1264 # OS is not "linux" or "freebsd" or "openbsd".
1263 "socket/unix_domain_socket_posix_unittest.cc", 1265 "socket/unix_domain_client_socket_posix_unittest.cc",
1266 "socket/unix_domain_listen_socket_posix_unittest.cc",
1267 "socket/unix_domain_server_socket_posix_unittest.cc",
1264 1268
1265 # See bug http://crbug.com/344533. 1269 # See bug http://crbug.com/344533.
1266 "disk_cache/blockfile/index_table_v3_unittest.cc", 1270 "disk_cache/blockfile/index_table_v3_unittest.cc",
1267 ] 1271 ]
1268 } 1272 }
1269 1273
1270 if (is_android) { 1274 if (is_android) {
1271 sources -= [ 1275 sources -= [
1272 "dns/dns_config_service_posix_unittest.cc", 1276 "dns/dns_config_service_posix_unittest.cc",
1273 ] 1277 ]
(...skipping 12 matching lines...) Expand all
1286 if (use_icu_alternatives_on_android) { 1290 if (use_icu_alternatives_on_android) {
1287 sources -= [ 1291 sources -= [
1288 "base/filename_util_unittest.cc", 1292 "base/filename_util_unittest.cc",
1289 "base/net_util_icu_unittest.cc", 1293 "base/net_util_icu_unittest.cc",
1290 ] 1294 ]
1291 deps -= [ "//base:i18n" ] 1295 deps -= [ "//base:i18n" ]
1292 } 1296 }
1293 } 1297 }
1294 1298
1295 } # !is_android 1299 } # !is_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698