| 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 "//net", | 10 "//net", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "cookies/system_cookie_util.mm", | 30 "cookies/system_cookie_util.mm", |
| 31 "crn_http_protocol_handler.h", | 31 "crn_http_protocol_handler.h", |
| 32 "crn_http_protocol_handler.mm", | 32 "crn_http_protocol_handler.mm", |
| 33 "crn_http_protocol_handler_proxy.h", | 33 "crn_http_protocol_handler_proxy.h", |
| 34 "crn_http_protocol_handler_proxy_with_client_thread.h", | 34 "crn_http_protocol_handler_proxy_with_client_thread.h", |
| 35 "crn_http_protocol_handler_proxy_with_client_thread.mm", | 35 "crn_http_protocol_handler_proxy_with_client_thread.mm", |
| 36 "crn_http_url_response.h", | 36 "crn_http_url_response.h", |
| 37 "crn_http_url_response.mm", | 37 "crn_http_url_response.mm", |
| 38 "empty_nsurlcache.h", | 38 "empty_nsurlcache.h", |
| 39 "empty_nsurlcache.mm", | 39 "empty_nsurlcache.mm", |
| 40 "http_cache_helper.cc", |
| 41 "http_cache_helper.h", |
| 40 "http_protocol_logging.h", | 42 "http_protocol_logging.h", |
| 41 "http_protocol_logging.mm", | 43 "http_protocol_logging.mm", |
| 42 "http_response_headers_util.h", | 44 "http_response_headers_util.h", |
| 43 "http_response_headers_util.mm", | 45 "http_response_headers_util.mm", |
| 44 "nsurlrequest_util.h", | 46 "nsurlrequest_util.h", |
| 45 "nsurlrequest_util.mm", | 47 "nsurlrequest_util.mm", |
| 46 "protocol_handler_util.h", | 48 "protocol_handler_util.h", |
| 47 "protocol_handler_util.mm", | 49 "protocol_handler_util.mm", |
| 48 "request_tracker.h", | 50 "request_tracker.h", |
| 49 "request_tracker.mm", | 51 "request_tracker.mm", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 67 "cookies/cookie_cache_unittest.cc", | 69 "cookies/cookie_cache_unittest.cc", |
| 68 "cookies/cookie_creation_time_manager_unittest.mm", | 70 "cookies/cookie_creation_time_manager_unittest.mm", |
| 69 "cookies/cookie_store_ios_unittest.mm", | 71 "cookies/cookie_store_ios_unittest.mm", |
| 70 "cookies/system_cookie_util_unittest.mm", | 72 "cookies/system_cookie_util_unittest.mm", |
| 71 "http_response_headers_util_unittest.mm", | 73 "http_response_headers_util_unittest.mm", |
| 72 "nsurlrequest_util_unittest.mm", | 74 "nsurlrequest_util_unittest.mm", |
| 73 "protocol_handler_util_unittest.mm", | 75 "protocol_handler_util_unittest.mm", |
| 74 "url_scheme_util_unittest.mm", | 76 "url_scheme_util_unittest.mm", |
| 75 ] | 77 ] |
| 76 } | 78 } |
| OLD | NEW |