| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 test("cronet_test") { | 8 test("cronet_test") { |
| 9 testonly = true | 9 testonly = true |
| 10 sources = [ | 10 sources = [ |
| 11 "cronet_bidirectional_stream_test.mm", | |
| 12 "cronet_http_test.mm", | 11 "cronet_http_test.mm", |
| 13 "cronet_test_runner.mm", | 12 "cronet_test_runner.mm", |
| 14 "quic_test_server.cc", | 13 "get_stream_engine.mm", |
| 15 "quic_test_server.h", | 14 "start_cronet.h", |
| 15 "start_cronet.mm", |
| 16 "test_server.cc", | 16 "test_server.cc", |
| 17 "test_server.h", | 17 "test_server.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//base:i18n", | 22 "//base:i18n", |
| 23 "//components/cronet/ios:cronet_framework+link", | 23 "//components/cronet/ios:cronet_framework+link", |
| 24 "//components/grpc_support:bidirectional_stream_unittest", |
| 25 "//components/grpc_support/test:quic_test_server", |
| 24 "//net", | 26 "//net", |
| 25 "//net:simple_quic_tools", | 27 "//net:simple_quic_tools", |
| 26 "//net:test_support", | 28 "//net:test_support", |
| 27 "//third_party/icu", | 29 "//third_party/icu", |
| 28 ] | 30 ] |
| 29 | 31 |
| 30 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ] | 32 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ] |
| 31 } | 33 } |
| OLD | NEW |