OLD | NEW |
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 source_set("net") { | 5 source_set("net") { |
6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
7 sources = [ | 7 sources = [ |
8 "chrome_cookie_store_ios_client.h", | 8 "chrome_cookie_store_ios_client.h", |
9 "chrome_cookie_store_ios_client.mm", | 9 "chrome_cookie_store_ios_client.mm", |
10 "connection_type_observer_bridge.h", | 10 "connection_type_observer_bridge.h", |
11 "connection_type_observer_bridge.mm", | 11 "connection_type_observer_bridge.mm", |
12 "cookie_util.h", | 12 "cookie_util.h", |
13 "cookie_util.mm", | 13 "cookie_util.mm", |
14 "crl_set_fetcher.cc", | 14 "crl_set_fetcher.cc", |
15 "crl_set_fetcher.h", | 15 "crl_set_fetcher.h", |
16 "http_server_properties_manager_factory.cc", | 16 "http_server_properties_manager_factory.cc", |
17 "http_server_properties_manager_factory.h", | 17 "http_server_properties_manager_factory.h", |
18 "ios_chrome_http_user_agent_settings.h", | 18 "ios_chrome_http_user_agent_settings.h", |
19 "ios_chrome_http_user_agent_settings.mm", | 19 "ios_chrome_http_user_agent_settings.mm", |
20 "ios_chrome_network_delegate.cc", | 20 "ios_chrome_network_delegate.cc", |
21 "ios_chrome_network_delegate.h", | 21 "ios_chrome_network_delegate.h", |
22 "ios_chrome_url_request_context_getter.cc", | 22 "ios_chrome_url_request_context_getter.cc", |
23 "ios_chrome_url_request_context_getter.h", | 23 "ios_chrome_url_request_context_getter.h", |
24 "proxy_service_factory.cc", | |
25 "proxy_service_factory.h", | |
26 "retryable_url_fetcher.h", | 24 "retryable_url_fetcher.h", |
27 "retryable_url_fetcher.mm", | 25 "retryable_url_fetcher.mm", |
28 ] | 26 ] |
29 deps = [ | 27 deps = [ |
30 "//base", | 28 "//base", |
31 "//components/component_updater", | 29 "//components/component_updater", |
32 "//components/content_settings/core/browser", | 30 "//components/content_settings/core/browser", |
33 "//components/pref_registry", | 31 "//components/pref_registry", |
34 "//components/prefs", | 32 "//components/prefs", |
35 "//components/proxy_config", | |
36 "//components/update_client", | 33 "//components/update_client", |
37 "//ios/chrome/browser", | 34 "//ios/chrome/browser", |
38 "//ios/chrome/browser/browser_state", | 35 "//ios/chrome/browser/browser_state", |
39 "//ios/chrome/browser/browsing_data", | 36 "//ios/chrome/browser/browsing_data", |
40 "//ios/net", | 37 "//ios/net", |
41 "//ios/web", | 38 "//ios/web", |
42 "//net", | 39 "//net", |
43 "//net:extras", | 40 "//net:extras", |
44 "//url", | 41 "//url", |
45 ] | 42 ] |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 deps = [ | 83 deps = [ |
87 "//base", | 84 "//base", |
88 "//ios/chrome/test/app:test_support", | 85 "//ios/chrome/test/app:test_support", |
89 "//ios/chrome/test/earl_grey:test_support", | 86 "//ios/chrome/test/earl_grey:test_support", |
90 "//ios/third_party/earl_grey", | 87 "//ios/third_party/earl_grey", |
91 "//ios/web:test_support", | 88 "//ios/web:test_support", |
92 "//url", | 89 "//url", |
93 ] | 90 ] |
94 libs = [ "XCTest.framework" ] | 91 libs = [ "XCTest.framework" ] |
95 } | 92 } |
OLD | NEW |