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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1258 "quic/quic_time_wait_list_manager.h", | 1258 "quic/quic_time_wait_list_manager.h", |
1259 ] | 1259 ] |
1260 deps = [ | 1260 deps = [ |
1261 ":net", | 1261 ":net", |
1262 "//base", | 1262 "//base", |
1263 "//base/third_party/dynamic_annotations", | 1263 "//base/third_party/dynamic_annotations", |
1264 "//url", | 1264 "//url", |
1265 ] | 1265 ] |
1266 } | 1266 } |
1267 | 1267 |
1268 executable("simple_quic_client") { | |
1269 testonly = true | |
1270 sources = [ | |
1271 "tools/quic/quic_simple_client.cc", | |
1272 "tools/quic/quic_simple_client.h", | |
1273 "tools/quic/quic_simple_client_bin.cc", | |
1274 "tools/quic/quic_simple_client_session.cc", | |
1275 "tools/quic/quic_simple_client_session.h", | |
1276 "tools/quic/quic_simple_client_stream.cc", | |
1277 "tools/quic/quic_simple_client_stream.h", | |
1278 ] | |
1279 deps = [ | |
1280 ":net", | |
1281 "//base", | |
1282 "//url", | |
1283 ] | |
1284 } | |
1285 | |
1286 # TODO(GYP) make this compile on Android, we need some native test deps done. | 1268 # TODO(GYP) make this compile on Android, we need some native test deps done. |
1287 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. | 1269 # TODO(GYP) Also doesn't work on Windows; dependency on boringssl is wrong. |
1288 # TODO(GYP) Also doesn't work on Mac, need to figure out why not. | 1270 # TODO(GYP) Also doesn't work on Mac, need to figure out why not. |
1289 if (!is_android && !is_win && !is_mac) { | 1271 if (!is_android && !is_win && !is_mac) { |
1290 test("net_unittests") { | 1272 test("net_unittests") { |
1291 sources = gypi_values.net_test_sources | 1273 sources = gypi_values.net_test_sources |
1292 | 1274 |
1293 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1275 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1294 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 1276 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
1295 defines = [] | 1277 defines = [] |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 } else { | 1609 } else { |
1628 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1610 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1629 } | 1611 } |
1630 | 1612 |
1631 if (is_win && icu_use_data_file) { | 1613 if (is_win && icu_use_data_file) { |
1632 # This is needed to trigger the dll copy step on windows. | 1614 # This is needed to trigger the dll copy step on windows. |
1633 # TODO(mark): Specifying this here shouldn't be necessary. | 1615 # TODO(mark): Specifying this here shouldn't be necessary. |
1634 deps += [ "//third_party/icu:icudata" ] | 1616 deps += [ "//third_party/icu:icudata" ] |
1635 } | 1617 } |
1636 } | 1618 } |
OLD | NEW |