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

Side by Side Diff: net/BUILD.gn

Issue 1025133002: Revert of Make the simple QUIC client able to resolve hosts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | 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("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 1188
1189 executable("quic_client") { 1189 executable("quic_client") {
1190 sources = [ 1190 sources = [
1191 "tools/quic/quic_client_bin.cc", 1191 "tools/quic/quic_client_bin.cc",
1192 ] 1192 ]
1193 deps = [ 1193 deps = [
1194 ":balsa", 1194 ":balsa",
1195 ":epoll_server", 1195 ":epoll_server",
1196 ":quic_base", 1196 ":quic_base",
1197 ":net", 1197 ":net",
1198 ":simple_quic_tools",
1199 "//base", 1198 "//base",
1200 "//third_party/boringssl", 1199 "//third_party/boringssl",
1201 ] 1200 ]
1202 } 1201 }
1203 } 1202 }
1204 1203
1205 if (is_android) { 1204 if (is_android) {
1206 generate_jni("net_jni_headers") { 1205 generate_jni("net_jni_headers") {
1207 sources = [ 1206 sources = [
1208 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", 1207 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 ] 1265 ]
1267 } 1266 }
1268 source_set("simple_quic_tools") { 1267 source_set("simple_quic_tools") {
1269 sources = [ 1268 sources = [
1270 "tools/quic/quic_simple_client.cc", 1269 "tools/quic/quic_simple_client.cc",
1271 "tools/quic/quic_simple_client.h", 1270 "tools/quic/quic_simple_client.h",
1272 "tools/quic/quic_simple_client_session.cc", 1271 "tools/quic/quic_simple_client_session.cc",
1273 "tools/quic/quic_simple_client_session.h", 1272 "tools/quic/quic_simple_client_session.h",
1274 "tools/quic/quic_simple_client_stream.cc", 1273 "tools/quic/quic_simple_client_stream.cc",
1275 "tools/quic/quic_simple_client_stream.h", 1274 "tools/quic/quic_simple_client_stream.h",
1276 "tools/quic/synchronous_host_resolver.cc",
1277 "tools/quic/synchronous_host_resolver.h",
1278 ] 1275 ]
1279 deps = [ 1276 deps = [
1280 ":net", 1277 ":net",
1281 "//base", 1278 "//base",
1282 "//base/third_party/dynamic_annotations", 1279 "//base/third_party/dynamic_annotations",
1283 "//url", 1280 "//url",
1284 ] 1281 ]
1285 } 1282 }
1286 1283
1287 executable("simple_quic_client") { 1284 executable("simple_quic_client") {
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 } else { 1638 } else {
1642 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1639 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1643 } 1640 }
1644 1641
1645 if (is_win && icu_use_data_file) { 1642 if (is_win && icu_use_data_file) {
1646 # This is needed to trigger the dll copy step on windows. 1643 # This is needed to trigger the dll copy step on windows.
1647 # TODO(mark): Specifying this here shouldn't be necessary. 1644 # TODO(mark): Specifying this here shouldn't be necessary.
1648 deps += [ "//third_party/icu:icudata" ] 1645 deps += [ "//third_party/icu:icudata" ]
1649 } 1646 }
1650 } 1647 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698