mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/ios/rules.gni")
|
|
import("//testing/test.gni")
|
|
|
|
test("cronet_test") {
|
|
testonly = true
|
|
sources = [
|
|
"cronet_acceptlang_test.mm",
|
|
"cronet_http_test.mm",
|
|
"cronet_metrics_test.mm",
|
|
"cronet_netlog_test.mm",
|
|
"cronet_performance_test.mm",
|
|
"cronet_pkp_test.mm",
|
|
"cronet_prefs_test.mm",
|
|
"cronet_quic_test.mm",
|
|
"cronet_test_base.h",
|
|
"cronet_test_base.mm",
|
|
"cronet_test_runner.mm",
|
|
"get_stream_engine.mm",
|
|
"start_cronet.h",
|
|
"start_cronet.mm",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base:i18n",
|
|
"//components/cronet/ios:cronet_framework+link",
|
|
"//components/cronet/native/test:cronet_native_tests",
|
|
"//components/cronet/test:test_support",
|
|
"//components/grpc_support:bidirectional_stream_unittest",
|
|
"//net",
|
|
"//net:simple_quic_tools",
|
|
"//net:test_support",
|
|
"//third_party/icu",
|
|
]
|
|
|
|
bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|