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

Side by Side Diff: net/BUILD.gn

Issue 1004173004: Make the simple QUIC client able to resolve hosts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove EXPORT to fix Win 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",
1198 "//base", 1199 "//base",
1199 "//third_party/boringssl", 1200 "//third_party/boringssl",
1200 ] 1201 ]
1201 } 1202 }
1202 } 1203 }
1203 1204
1204 if (is_android) { 1205 if (is_android) {
1205 generate_jni("net_jni_headers") { 1206 generate_jni("net_jni_headers") {
1206 sources = [ 1207 sources = [
1207 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java", 1208 "android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 ] 1266 ]
1266 } 1267 }
1267 source_set("simple_quic_tools") { 1268 source_set("simple_quic_tools") {
1268 sources = [ 1269 sources = [
1269 "tools/quic/quic_simple_client.cc", 1270 "tools/quic/quic_simple_client.cc",
1270 "tools/quic/quic_simple_client.h", 1271 "tools/quic/quic_simple_client.h",
1271 "tools/quic/quic_simple_client_session.cc", 1272 "tools/quic/quic_simple_client_session.cc",
1272 "tools/quic/quic_simple_client_session.h", 1273 "tools/quic/quic_simple_client_session.h",
1273 "tools/quic/quic_simple_client_stream.cc", 1274 "tools/quic/quic_simple_client_stream.cc",
1274 "tools/quic/quic_simple_client_stream.h", 1275 "tools/quic/quic_simple_client_stream.h",
1276 "tools/quic/synchronous_host_resolver.cc",
1277 "tools/quic/synchronous_host_resolver.h",
1275 ] 1278 ]
1276 deps = [ 1279 deps = [
1277 ":net", 1280 ":net",
1278 "//base", 1281 "//base",
1279 "//base/third_party/dynamic_annotations", 1282 "//base/third_party/dynamic_annotations",
1280 "//url", 1283 "//url",
1281 ] 1284 ]
1282 } 1285 }
1283 1286
1284 executable("simple_quic_client") { 1287 executable("simple_quic_client") {
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 } else { 1641 } else {
1639 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1642 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1640 } 1643 }
1641 1644
1642 if (is_win && icu_use_data_file) { 1645 if (is_win && icu_use_data_file) {
1643 # This is needed to trigger the dll copy step on windows. 1646 # This is needed to trigger the dll copy step on windows.
1644 # TODO(mark): Specifying this here shouldn't be necessary. 1647 # TODO(mark): Specifying this here shouldn't be necessary.
1645 deps += [ "//third_party/icu:icudata" ] 1648 deps += [ "//third_party/icu:icudata" ]
1646 } 1649 }
1647 } 1650 }
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