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

Side by Side Diff: net/BUILD.gn

Issue 376323002: Refactor unix domain socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved UnixDomainListenSocket to net::deprecated namespace. 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
« no previous file with comments | « content/shell/browser/shell_devtools_delegate.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//url/config.gni") 8 import("//url/config.gni")
9 9
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 "proxy/proxy_script_fetcher_impl_unittest.cc", 1289 "proxy/proxy_script_fetcher_impl_unittest.cc",
1290 "socket/ssl_client_socket_unittest.cc", 1290 "socket/ssl_client_socket_unittest.cc",
1291 "url_request/url_fetcher_impl_unittest.cc", 1291 "url_request/url_fetcher_impl_unittest.cc",
1292 "url_request/url_request_context_builder_unittest.cc", 1292 "url_request/url_request_context_builder_unittest.cc",
1293 # Needs GetAppOutput(). 1293 # Needs GetAppOutput().
1294 "test/python_utils_unittest.cc", 1294 "test/python_utils_unittest.cc",
1295 1295
1296 # The following tests are disabled because they don't apply to 1296 # The following tests are disabled because they don't apply to
1297 # iOS. 1297 # iOS.
1298 # OS is not "linux" or "freebsd" or "openbsd". 1298 # OS is not "linux" or "freebsd" or "openbsd".
1299 "socket/unix_domain_socket_posix_unittest.cc", 1299 "socket/unix_domain_client_socket_posix_unittest.cc",
1300 "socket/unix_domain_listen_socket_posix_unittest.cc",
1301 "socket/unix_domain_server_socket_posix_unittest.cc",
1300 1302
1301 # See bug http://crbug.com/344533. 1303 # See bug http://crbug.com/344533.
1302 "disk_cache/blockfile/index_table_v3_unittest.cc", 1304 "disk_cache/blockfile/index_table_v3_unittest.cc",
1303 ] 1305 ]
1304 } 1306 }
1305 1307
1306 if (is_android) { 1308 if (is_android) {
1307 sources -= [ 1309 sources -= [
1308 "dns/dns_config_service_posix_unittest.cc", 1310 "dns/dns_config_service_posix_unittest.cc",
1309 ] 1311 ]
(...skipping 22 matching lines...) Expand all
1332 sources = [ "quic/quic_server_bin.cc" ] 1334 sources = [ "quic/quic_server_bin.cc" ]
1333 deps = [ 1335 deps = [
1334 ":quic_tools", 1336 ":quic_tools",
1335 ":net", 1337 ":net",
1336 "//base", 1338 "//base",
1337 "//third_party/openssl", 1339 "//third_party/openssl",
1338 ] 1340 ]
1339 } 1341 }
1340 1342
1341 } # !is_android 1343 } # !is_android
OLDNEW
« no previous file with comments | « content/shell/browser/shell_devtools_delegate.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698