| 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 = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "//components/cronet/ios:cronet_framework+link", | 25 "//components/cronet/ios:cronet_framework+link", |
| 26 "//components/grpc_support:bidirectional_stream_unittest", | 26 "//components/grpc_support:bidirectional_stream_unittest", |
| 27 "//components/grpc_support/test:quic_test_server", | 27 "//components/grpc_support/test:quic_test_server", |
| 28 "//net", | 28 "//net", |
| 29 "//net:simple_quic_tools", | 29 "//net:simple_quic_tools", |
| 30 "//net:test_support", | 30 "//net:test_support", |
| 31 "//third_party/icu", | 31 "//third_party/icu", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ] | 34 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ] |
| 35 configs += [ "//build/config/compiler:enable_arc" ] |
| 35 } | 36 } |
| OLD | NEW |