| 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 group("all_tests") { | 9 group("all_tests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 sources = [ | 25 sources = [ |
| 26 "clients/crn_network_client_protocol.h", | 26 "clients/crn_network_client_protocol.h", |
| 27 "cookies/cookie_cache.cc", | 27 "cookies/cookie_cache.cc", |
| 28 "cookies/cookie_cache.h", | 28 "cookies/cookie_cache.h", |
| 29 "cookies/cookie_creation_time_manager.h", | 29 "cookies/cookie_creation_time_manager.h", |
| 30 "cookies/cookie_creation_time_manager.mm", | 30 "cookies/cookie_creation_time_manager.mm", |
| 31 "cookies/cookie_store_ios.h", | 31 "cookies/cookie_store_ios.h", |
| 32 "cookies/cookie_store_ios.mm", | 32 "cookies/cookie_store_ios.mm", |
| 33 "cookies/cookie_store_ios_client.h", | 33 "cookies/cookie_store_ios_client.h", |
| 34 "cookies/cookie_store_ios_client.mm", | 34 "cookies/cookie_store_ios_client.mm", |
| 35 "cookies/cookie_store_ios_persistent.h", |
| 36 "cookies/cookie_store_ios_persistent.mm", |
| 35 "cookies/system_cookie_util.h", | 37 "cookies/system_cookie_util.h", |
| 36 "cookies/system_cookie_util.mm", | 38 "cookies/system_cookie_util.mm", |
| 37 "crn_http_protocol_handler.h", | 39 "crn_http_protocol_handler.h", |
| 38 "crn_http_protocol_handler.mm", | 40 "crn_http_protocol_handler.mm", |
| 39 "crn_http_protocol_handler_proxy.h", | 41 "crn_http_protocol_handler_proxy.h", |
| 40 "crn_http_protocol_handler_proxy_with_client_thread.h", | 42 "crn_http_protocol_handler_proxy_with_client_thread.h", |
| 41 "crn_http_protocol_handler_proxy_with_client_thread.mm", | 43 "crn_http_protocol_handler_proxy_with_client_thread.mm", |
| 42 "crn_http_url_response.h", | 44 "crn_http_url_response.h", |
| 43 "crn_http_url_response.mm", | 45 "crn_http_url_response.mm", |
| 44 "empty_nsurlcache.h", | 46 "empty_nsurlcache.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "cookies/cookie_store_ios_unittest.mm", | 82 "cookies/cookie_store_ios_unittest.mm", |
| 81 "cookies/system_cookie_util_unittest.mm", | 83 "cookies/system_cookie_util_unittest.mm", |
| 82 "http_response_headers_util_unittest.mm", | 84 "http_response_headers_util_unittest.mm", |
| 83 "nsurlrequest_util_unittest.mm", | 85 "nsurlrequest_util_unittest.mm", |
| 84 "protocol_handler_util_unittest.mm", | 86 "protocol_handler_util_unittest.mm", |
| 85 "url_scheme_util_unittest.mm", | 87 "url_scheme_util_unittest.mm", |
| 86 ] | 88 ] |
| 87 | 89 |
| 88 assert_no_deps = ios_assert_no_deps | 90 assert_no_deps = ios_assert_no_deps |
| 89 } | 91 } |
| OLD | NEW |