Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: components/cronet/ios/test/BUILD.gn

Issue 2928653002: [Cronet-iOS] Public-Key-Pinning Tests (Closed)
Patch Set: Build fix on bot Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_acceptlang_test.mm", 11 "cronet_acceptlang_test.mm",
12 "cronet_http_test.mm", 12 "cronet_http_test.mm",
13 "cronet_netlog_test.mm", 13 "cronet_netlog_test.mm",
14 "cronet_pkp_test.mm",
15 "cronet_test_base.mm",
14 "cronet_test_runner.mm", 16 "cronet_test_runner.mm",
15 "get_stream_engine.mm", 17 "get_stream_engine.mm",
16 "start_cronet.h", 18 "start_cronet.h",
17 "start_cronet.mm", 19 "start_cronet.mm",
18 "test_server.cc", 20 "test_server.cc",
19 "test_server.h", 21 "test_server.h",
20 ] 22 ]
21 23
22 deps = [ 24 deps = [
23 "//base", 25 "//base",
24 "//base:i18n", 26 "//base:i18n",
25 "//components/cronet/ios:cronet_framework+link", 27 "//components/cronet/ios:cronet_framework+link",
26 "//components/grpc_support:bidirectional_stream_unittest", 28 "//components/grpc_support:bidirectional_stream_unittest",
27 "//components/grpc_support/test:quic_test_server", 29 "//components/grpc_support/test:quic_test_server",
28 "//net", 30 "//net",
29 "//net:simple_quic_tools", 31 "//net:simple_quic_tools",
30 "//net:test_support", 32 "//net:test_support",
31 "//third_party/icu", 33 "//third_party/icu",
32 ] 34 ]
33 35
34 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ] 36 bundle_deps = [ "//components/cronet/ios:cronet_framework+bundle" ]
37 configs += [ "//build/config/compiler:enable_arc" ]
lilyhoughton 2017/06/09 16:51:57 where does this come from?
kapishnikov 2017/06/09 21:27:02 This line enables automatic reference counting.
35 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698