| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("net") { | 7 source_set("net") { |
| 8 deps = [ | 8 deps = [ |
| 9 "//base", | 9 "//base", |
| 10 "//base:i18n", |
| 10 "//net", | 11 "//net", |
| 12 "//url:url_features", |
| 11 ] | 13 ] |
| 12 | 14 |
| 13 sources = [ | 15 sources = [ |
| 14 "clients/crn_forwarding_network_client.h", | 16 "clients/crn_forwarding_network_client.h", |
| 15 "clients/crn_forwarding_network_client.mm", | 17 "clients/crn_forwarding_network_client.mm", |
| 16 "clients/crn_forwarding_network_client_factory.h", | 18 "clients/crn_forwarding_network_client_factory.h", |
| 17 "clients/crn_forwarding_network_client_factory.mm", | 19 "clients/crn_forwarding_network_client_factory.mm", |
| 18 "clients/crn_network_client_protocol.h", | 20 "clients/crn_network_client_protocol.h", |
| 19 "clients/crn_simple_network_client_factory.h", | 21 "clients/crn_simple_network_client_factory.h", |
| 20 "clients/crn_simple_network_client_factory.mm", | 22 "clients/crn_simple_network_client_factory.mm", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "cookies/cookie_cache_unittest.cc", | 71 "cookies/cookie_cache_unittest.cc", |
| 70 "cookies/cookie_creation_time_manager_unittest.mm", | 72 "cookies/cookie_creation_time_manager_unittest.mm", |
| 71 "cookies/cookie_store_ios_unittest.mm", | 73 "cookies/cookie_store_ios_unittest.mm", |
| 72 "cookies/system_cookie_util_unittest.mm", | 74 "cookies/system_cookie_util_unittest.mm", |
| 73 "http_response_headers_util_unittest.mm", | 75 "http_response_headers_util_unittest.mm", |
| 74 "nsurlrequest_util_unittest.mm", | 76 "nsurlrequest_util_unittest.mm", |
| 75 "protocol_handler_util_unittest.mm", | 77 "protocol_handler_util_unittest.mm", |
| 76 "url_scheme_util_unittest.mm", | 78 "url_scheme_util_unittest.mm", |
| 77 ] | 79 ] |
| 78 } | 80 } |
| OLD | NEW |