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

Side by Side Diff: net/BUILD.gn

Issue 296053012: Replace StreamListenSocket with StreamSocket in HttpServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't export HttpServer which is built in a static lib 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 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1250 "proxy/proxy_script_fetcher_impl_unittest.cc", 1250 "proxy/proxy_script_fetcher_impl_unittest.cc",
1251 "socket/ssl_client_socket_unittest.cc", 1251 "socket/ssl_client_socket_unittest.cc",
1252 "url_request/url_fetcher_impl_unittest.cc", 1252 "url_request/url_fetcher_impl_unittest.cc",
1253 "url_request/url_request_context_builder_unittest.cc", 1253 "url_request/url_request_context_builder_unittest.cc",
1254 # Needs GetAppOutput(). 1254 # Needs GetAppOutput().
1255 "test/python_utils_unittest.cc", 1255 "test/python_utils_unittest.cc",
1256 1256
1257 # The following tests are disabled because they don't apply to 1257 # The following tests are disabled because they don't apply to
1258 # iOS. 1258 # iOS.
1259 # OS is not "linux" or "freebsd" or "openbsd". 1259 # OS is not "linux" or "freebsd" or "openbsd".
1260 "socket/unix_domain_socket_posix_unittest.cc", 1260 "socket/unix_domain_client_socket_posix_unittest.cc",
1261 "socket/unix_domain_listen_socket_posix_unittest.cc",
1262 "socket/unix_domain_server_socket_posix_unittest.cc",
1261 1263
1262 # See bug http://crbug.com/344533. 1264 # See bug http://crbug.com/344533.
1263 "disk_cache/blockfile/index_table_v3_unittest.cc", 1265 "disk_cache/blockfile/index_table_v3_unittest.cc",
1264 ] 1266 ]
1265 } 1267 }
1266 1268
1267 if (is_android) { 1269 if (is_android) {
1268 sources -= [ 1270 sources -= [
1269 "dns/dns_config_service_posix_unittest.cc", 1271 "dns/dns_config_service_posix_unittest.cc",
1270 ] 1272 ]
(...skipping 12 matching lines...) Expand all
1283 if (use_icu_alternatives_on_android) { 1285 if (use_icu_alternatives_on_android) {
1284 sources -= [ 1286 sources -= [
1285 "base/filename_util_unittest.cc", 1287 "base/filename_util_unittest.cc",
1286 "base/net_util_icu_unittest.cc", 1288 "base/net_util_icu_unittest.cc",
1287 ] 1289 ]
1288 deps -= [ "//base:i18n" ] 1290 deps -= [ "//base:i18n" ]
1289 } 1291 }
1290 } 1292 }
1291 1293
1292 } # !is_android 1294 } # !is_android
OLDNEW
« no previous file with comments | « mojo/spy/websocket_server.cc ('k') | net/net.gyp » ('j') | net/server/http_connection.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698