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

Side by Side Diff: net/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 "tools/flip_server/spdy_interface_test.cc", 1094 "tools/flip_server/spdy_interface_test.cc",
1095 "tools/flip_server/url_to_filename_encoder_unittest.cc", 1095 "tools/flip_server/url_to_filename_encoder_unittest.cc",
1096 "tools/flip_server/url_utilities_unittest.cc", 1096 "tools/flip_server/url_utilities_unittest.cc",
1097 ] 1097 ]
1098 deps = [ 1098 deps = [
1099 ":balsa", 1099 ":balsa",
1100 ":flip_in_mem_edsm_server_base", 1100 ":flip_in_mem_edsm_server_base",
1101 ":net", 1101 ":net",
1102 ":test_support", 1102 ":test_support",
1103 "//build/config/sanitizers:deps", 1103 "//build/config/sanitizers:deps",
1104 "//testing/gmock",
1104 "//testing/gtest", 1105 "//testing/gtest",
1105 "//testing/gmock",
1106 "//third_party/boringssl", 1106 "//third_party/boringssl",
1107 ] 1107 ]
1108 } 1108 }
1109 1109
1110 executable("flip_in_mem_edsm_server") { 1110 executable("flip_in_mem_edsm_server") {
1111 testonly = true 1111 testonly = true
1112 sources = [ 1112 sources = [
1113 "tools/flip_server/flip_in_mem_edsm_server.cc", 1113 "tools/flip_server/flip_in_mem_edsm_server.cc",
1114 ] 1114 ]
1115 deps = [ 1115 deps = [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 "//url", 1151 "//url",
1152 ] 1152 ]
1153 } 1153 }
1154 1154
1155 executable("epoll_quic_client") { 1155 executable("epoll_quic_client") {
1156 sources = [ 1156 sources = [
1157 "tools/quic/quic_client_bin.cc", 1157 "tools/quic/quic_client_bin.cc",
1158 ] 1158 ]
1159 deps = [ 1159 deps = [
1160 ":balsa", 1160 ":balsa",
1161 ":epoll_quic_tools",
1161 ":epoll_server", 1162 ":epoll_server",
1162 ":epoll_quic_tools",
1163 ":net", 1163 ":net",
1164 ":simple_quic_tools", 1164 ":simple_quic_tools",
1165 "//base", 1165 "//base",
1166 "//build/config/sanitizers:deps", 1166 "//build/config/sanitizers:deps",
1167 "//third_party/boringssl", 1167 "//third_party/boringssl",
1168 ] 1168 ]
1169 } 1169 }
1170 1170
1171 executable("epoll_quic_server") { 1171 executable("epoll_quic_server") {
1172 sources = [ 1172 sources = [
1173 "tools/quic/quic_server_bin.cc", 1173 "tools/quic/quic_server_bin.cc",
1174 ] 1174 ]
1175 deps = [ 1175 deps = [
1176 ":balsa", 1176 ":balsa",
1177 ":epoll_quic_tools",
1177 ":epoll_server", 1178 ":epoll_server",
1178 ":epoll_quic_tools",
1179 ":net", 1179 ":net",
1180 ":simple_quic_tools", 1180 ":simple_quic_tools",
1181 "//base", 1181 "//base",
1182 "//build/config/sanitizers:deps", 1182 "//build/config/sanitizers:deps",
1183 "//third_party/boringssl", 1183 "//third_party/boringssl",
1184 ] 1184 ]
1185 } 1185 }
1186 } 1186 }
1187 1187
1188 if (is_android) { 1188 if (is_android) {
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 if (enable_websockets) { 1663 if (enable_websockets) {
1664 sources += [ "websockets/websocket_frame_perftest.cc" ] 1664 sources += [ "websockets/websocket_frame_perftest.cc" ]
1665 } 1665 }
1666 1666
1667 if (use_v8_in_net) { 1667 if (use_v8_in_net) {
1668 deps += [ ":net_with_v8" ] 1668 deps += [ ":net_with_v8" ]
1669 } else { 1669 } else {
1670 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1670 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1671 } 1671 }
1672 } 1672 }
OLDNEW
« components/BUILD.gn ('K') | « mojo/shell/BUILD.gn ('k') | net/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698