| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//url/features.gni") | 7 import("//url/features.gni") |
| 8 | 8 |
| 9 source_set("net") { | 9 source_set("net") { |
| 10 deps = [ | 10 deps = [ |
| 11 "//base", | 11 "//base", |
| 12 "//net", | 12 "//net", |
| 13 "//url:url_features", | 13 "//url:url_features", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 configs += [ "//build/config/compiler:enable_arc" ] |
| 17 |
| 16 sources = [ | 18 sources = [ |
| 17 "clients/crn_forwarding_network_client.h", | 19 "clients/crn_forwarding_network_client.h", |
| 18 "clients/crn_forwarding_network_client.mm", | 20 "clients/crn_forwarding_network_client.mm", |
| 19 "clients/crn_forwarding_network_client_factory.h", | 21 "clients/crn_forwarding_network_client_factory.h", |
| 20 "clients/crn_forwarding_network_client_factory.mm", | 22 "clients/crn_forwarding_network_client_factory.mm", |
| 21 "clients/crn_network_client_protocol.h", | 23 "clients/crn_network_client_protocol.h", |
| 22 "clients/crn_simple_network_client_factory.h", | 24 "clients/crn_simple_network_client_factory.h", |
| 23 "clients/crn_simple_network_client_factory.mm", | 25 "clients/crn_simple_network_client_factory.mm", |
| 24 "cookies/cookie_cache.cc", | 26 "cookies/cookie_cache.cc", |
| 25 "cookies/cookie_cache.h", | 27 "cookies/cookie_cache.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "cookies/cookie_store_ios_unittest.mm", | 80 "cookies/cookie_store_ios_unittest.mm", |
| 79 "cookies/system_cookie_util_unittest.mm", | 81 "cookies/system_cookie_util_unittest.mm", |
| 80 "http_response_headers_util_unittest.mm", | 82 "http_response_headers_util_unittest.mm", |
| 81 "nsurlrequest_util_unittest.mm", | 83 "nsurlrequest_util_unittest.mm", |
| 82 "protocol_handler_util_unittest.mm", | 84 "protocol_handler_util_unittest.mm", |
| 83 "url_scheme_util_unittest.mm", | 85 "url_scheme_util_unittest.mm", |
| 84 ] | 86 ] |
| 85 | 87 |
| 86 assert_no_deps = ios_assert_no_deps | 88 assert_no_deps = ios_assert_no_deps |
| 87 } | 89 } |
| OLD | NEW |