Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: ios/chrome/browser/net/BUILD.gn

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/metrics/BUILD.gn ('k') | ios/chrome/browser/ntp_snippets/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("net") {
6 sources = [
7 "chrome_cookie_store_ios_client.h",
8 "chrome_cookie_store_ios_client.mm",
9 "connection_type_observer_bridge.h",
10 "connection_type_observer_bridge.mm",
11 "cookie_util.h",
12 "cookie_util.mm",
13 "crl_set_fetcher.cc",
14 "crl_set_fetcher.h",
15 "http_server_properties_manager_factory.cc",
16 "http_server_properties_manager_factory.h",
17 "image_fetcher.h",
18 "image_fetcher.mm",
19 "ios_chrome_http_user_agent_settings.h",
20 "ios_chrome_http_user_agent_settings.mm",
21 "ios_chrome_network_delegate.cc",
22 "ios_chrome_network_delegate.h",
23 "ios_chrome_url_request_context_getter.cc",
24 "ios_chrome_url_request_context_getter.h",
25 "metrics_network_client.h",
26 "metrics_network_client.mm",
27 "metrics_network_client_manager.h",
28 "metrics_network_client_manager.mm",
29 "net_types.h",
30 "proxy_service_factory.cc",
31 "proxy_service_factory.h",
32 "retryable_url_fetcher.h",
33 "retryable_url_fetcher.mm",
34 ]
35 deps = [
36 "//base",
37 "//components/component_updater",
38 "//components/content_settings/core/browser",
39 "//components/pref_registry",
40 "//components/prefs",
41 "//components/proxy_config",
42 "//components/update_client",
43 "//ios/chrome/browser:browser_no_public_deps",
44 "//ios/chrome/browser/browser_state",
45 "//ios/chrome/browser/browsing_data",
46 "//ios/chrome/browser/webp_transcode",
47 "//ios/net",
48 "//ios/web",
49 "//net",
50 "//net:extras",
51 "//url",
52 ]
53 allow_circular_includes_from = [
54 "//ios/chrome/browser:browser_no_public_deps",
55 "//ios/chrome/browser/browser_state",
56 ]
57 }
58
59 source_set("test_support") {
60 testonly = true
61 sources = [
62 "mock_image_fetcher.h",
63 "mock_image_fetcher.mm",
64 ]
65 deps = [
66 ":net",
67 "//testing/gmock",
68 ]
69 }
70
71 source_set("unit_tests") {
72 testonly = true
73 sources = [
74 "cookie_util_unittest.mm",
75 "image_fetcher_unittest.mm",
76 "metrics_network_client_unittest.mm",
77 "retryable_url_fetcher_unittest.mm",
78 ]
79 deps = [
80 ":net",
81 "//base",
82 "//base/test:test_support",
83 "//ios/web:test_support",
84 "//net",
85 "//net:test_support",
86 "//testing/gtest",
87 ]
88 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/metrics/BUILD.gn ('k') | ios/chrome/browser/ntp_snippets/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698