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

Side by Side Diff: net/BUILD.gn

Issue 2169503002: Remove flip_server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « build/gn_migration.gypi ('k') | net/DEPS » ('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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 sources = [ 1070 sources = [
1071 "tools/epoll_server/epoll_server.cc", 1071 "tools/epoll_server/epoll_server.cc",
1072 "tools/epoll_server/epoll_server.h", 1072 "tools/epoll_server/epoll_server.h",
1073 ] 1073 ]
1074 deps = [ 1074 deps = [
1075 ":net", 1075 ":net",
1076 "//base", 1076 "//base",
1077 ] 1077 ]
1078 } 1078 }
1079 1079
1080 static_library("flip_in_mem_edsm_server_base") {
1081 testonly = true
1082 sources = [
1083 "tools/flip_server/acceptor_thread.cc",
1084 "tools/flip_server/acceptor_thread.h",
1085 "tools/flip_server/constants.h",
1086 "tools/flip_server/flip_config.cc",
1087 "tools/flip_server/flip_config.h",
1088 "tools/flip_server/http_interface.cc",
1089 "tools/flip_server/http_interface.h",
1090 "tools/flip_server/mem_cache.cc",
1091 "tools/flip_server/mem_cache.h",
1092 "tools/flip_server/output_ordering.cc",
1093 "tools/flip_server/output_ordering.h",
1094 "tools/flip_server/ring_buffer.cc",
1095 "tools/flip_server/ring_buffer.h",
1096 "tools/flip_server/sm_connection.cc",
1097 "tools/flip_server/sm_connection.h",
1098 "tools/flip_server/sm_interface.h",
1099 "tools/flip_server/spdy_interface.cc",
1100 "tools/flip_server/spdy_interface.h",
1101 "tools/flip_server/spdy_ssl.cc",
1102 "tools/flip_server/spdy_ssl.h",
1103 "tools/flip_server/spdy_util.cc",
1104 "tools/flip_server/spdy_util.h",
1105 "tools/flip_server/streamer_interface.cc",
1106 "tools/flip_server/streamer_interface.h",
1107 "tools/flip_server/tcp_socket_util.cc",
1108 "tools/flip_server/tcp_socket_util.h",
1109 "tools/flip_server/url_to_filename_encoder.cc",
1110 "tools/flip_server/url_to_filename_encoder.h",
1111 "tools/flip_server/url_utilities.cc",
1112 "tools/flip_server/url_utilities.h",
1113 ]
1114 deps = [
1115 ":balsa",
1116 ":epoll_server",
1117 ":net",
1118 "//base",
1119 "//third_party/boringssl",
1120 ]
1121 }
1122
1123 executable("flip_in_mem_edsm_server_unittests") {
1124 testonly = true
1125 sources = [
1126 "tools/flip_server/flip_test_utils.cc",
1127 "tools/flip_server/flip_test_utils.h",
1128 "tools/flip_server/http_interface_test.cc",
1129 "tools/flip_server/mem_cache_test.cc",
1130 "tools/flip_server/run_all_tests.cc",
1131 "tools/flip_server/spdy_interface_test.cc",
1132 "tools/flip_server/url_to_filename_encoder_unittest.cc",
1133 "tools/flip_server/url_utilities_unittest.cc",
1134 ]
1135 deps = [
1136 ":balsa",
1137 ":flip_in_mem_edsm_server_base",
1138 ":net",
1139 ":test_support",
1140 "//build/config/sanitizers:deps",
1141 "//testing/gmock",
1142 "//testing/gtest",
1143 "//third_party/boringssl",
1144 ]
1145 }
1146
1147 executable("flip_in_mem_edsm_server") {
1148 testonly = true
1149 sources = [
1150 "tools/flip_server/flip_in_mem_edsm_server.cc",
1151 ]
1152 deps = [
1153 ":balsa",
1154 ":flip_in_mem_edsm_server_base",
1155 ":net",
1156 "//base",
1157 "//build/config/sanitizers:deps",
1158 ]
1159 }
1160
1161 source_set("epoll_quic_tools") { 1080 source_set("epoll_quic_tools") {
1162 sources = [ 1081 sources = [
1163 "tools/quic/quic_client.cc", 1082 "tools/quic/quic_client.cc",
1164 "tools/quic/quic_client.h", 1083 "tools/quic/quic_client.h",
1165 "tools/quic/quic_default_packet_writer.cc", 1084 "tools/quic/quic_default_packet_writer.cc",
1166 "tools/quic/quic_default_packet_writer.h", 1085 "tools/quic/quic_default_packet_writer.h",
1167 "tools/quic/quic_epoll_alarm_factory.cc", 1086 "tools/quic/quic_epoll_alarm_factory.cc",
1168 "tools/quic/quic_epoll_alarm_factory.h", 1087 "tools/quic/quic_epoll_alarm_factory.h",
1169 "tools/quic/quic_epoll_clock.cc", 1088 "tools/quic/quic_epoll_clock.cc",
1170 "tools/quic/quic_epoll_clock.h", 1089 "tools/quic/quic_epoll_clock.h",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 } 1384 }
1466 1385
1467 if (is_desktop_linux) { 1386 if (is_desktop_linux) {
1468 deps += [ ":epoll_quic_tools" ] 1387 deps += [ ":epoll_quic_tools" ]
1469 } 1388 }
1470 if (is_linux) { 1389 if (is_linux) {
1471 sources += gypi_values.net_linux_test_sources 1390 sources += gypi_values.net_linux_test_sources
1472 deps += [ 1391 deps += [
1473 ":epoll_quic_tools", 1392 ":epoll_quic_tools",
1474 ":epoll_server", 1393 ":epoll_server",
1475 ":flip_in_mem_edsm_server_base",
1476 ] 1394 ]
1477 } 1395 }
1478 1396
1479 if (is_mac || is_ios) { 1397 if (is_mac || is_ios) {
1480 sources += gypi_values.net_base_test_mac_ios_sources 1398 sources += gypi_values.net_base_test_mac_ios_sources
1481 } 1399 }
1482 1400
1483 if (is_chromeos) { 1401 if (is_chromeos) {
1484 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ] 1402 sources -= [ "proxy/proxy_config_service_linux_unittest.cc" ]
1485 } 1403 }
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
2083 "url_request/url_request_fuzzer.cc", 2001 "url_request/url_request_fuzzer.cc",
2084 ] 2002 ]
2085 deps = [ 2003 deps = [
2086 ":net_fuzzer_test_support", 2004 ":net_fuzzer_test_support",
2087 ":test_support", 2005 ":test_support",
2088 "//base", 2006 "//base",
2089 "//net", 2007 "//net",
2090 ] 2008 ]
2091 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" 2009 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
2092 } 2010 }
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698