| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |