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

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

Issue 2521253002: Move ImageFetcher to its own target. (Closed)
Patch Set: Cleanup Created 4 years 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/BUILD.gn ('k') | ios/chrome/browser/net/image_fetcher.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 sources = [ 6 sources = [
7 "chrome_cookie_store_ios_client.h", 7 "chrome_cookie_store_ios_client.h",
8 "chrome_cookie_store_ios_client.mm", 8 "chrome_cookie_store_ios_client.mm",
9 "connection_type_observer_bridge.h", 9 "connection_type_observer_bridge.h",
10 "connection_type_observer_bridge.mm", 10 "connection_type_observer_bridge.mm",
(...skipping 18 matching lines...) Expand all
29 "net_types.h", 29 "net_types.h",
30 "proxy_service_factory.cc", 30 "proxy_service_factory.cc",
31 "proxy_service_factory.h", 31 "proxy_service_factory.h",
32 "retryable_url_fetcher.h", 32 "retryable_url_fetcher.h",
33 "retryable_url_fetcher.mm", 33 "retryable_url_fetcher.mm",
34 ] 34 ]
35 deps = [ 35 deps = [
36 "//base", 36 "//base",
37 "//components/component_updater", 37 "//components/component_updater",
38 "//components/content_settings/core/browser", 38 "//components/content_settings/core/browser",
39 "//components/image_fetcher/ios",
39 "//components/pref_registry", 40 "//components/pref_registry",
40 "//components/prefs", 41 "//components/prefs",
41 "//components/proxy_config", 42 "//components/proxy_config",
42 "//components/update_client", 43 "//components/update_client",
43 "//ios/chrome/browser", 44 "//ios/chrome/browser",
44 "//ios/chrome/browser/browser_state", 45 "//ios/chrome/browser/browser_state",
45 "//ios/chrome/browser/browsing_data", 46 "//ios/chrome/browser/browsing_data",
46 "//ios/chrome/browser/webp_transcode",
47 "//ios/net", 47 "//ios/net",
48 "//ios/web", 48 "//ios/web",
49 "//net", 49 "//net",
50 "//net:extras", 50 "//net:extras",
51 "//url", 51 "//url",
52 ] 52 ]
53 allow_circular_includes_from = [ 53 allow_circular_includes_from = [
54 "//ios/chrome/browser", 54 "//ios/chrome/browser",
55 "//ios/chrome/browser/browser_state", 55 "//ios/chrome/browser/browser_state",
56 ] 56 ]
57 } 57 }
58 58
59 source_set("test_support") { 59 source_set("test_support") {
60 testonly = true 60 testonly = true
61 sources = [ 61 sources = [
62 "mock_image_fetcher.h", 62 "mock_image_fetcher.h",
63 "mock_image_fetcher.mm", 63 "mock_image_fetcher.mm",
64 ] 64 ]
65 deps = [ 65 deps = [
66 ":net", 66 ":net",
67 "//testing/gmock", 67 "//testing/gmock",
68 ] 68 ]
69 } 69 }
70 70
71 source_set("unit_tests") { 71 source_set("unit_tests") {
72 testonly = true 72 testonly = true
73 sources = [ 73 sources = [
74 "cookie_util_unittest.mm", 74 "cookie_util_unittest.mm",
75 "image_fetcher_unittest.mm",
76 "metrics_network_client_unittest.mm", 75 "metrics_network_client_unittest.mm",
77 "retryable_url_fetcher_unittest.mm", 76 "retryable_url_fetcher_unittest.mm",
78 ] 77 ]
79 deps = [ 78 deps = [
80 ":net", 79 ":net",
81 "//base", 80 "//base",
82 "//base/test:test_support", 81 "//base/test:test_support",
83 "//ios/web:test_support", 82 "//ios/web:test_support",
84 "//net", 83 "//net",
85 "//net:test_support", 84 "//net:test_support",
86 "//testing/gtest", 85 "//testing/gtest",
87 ] 86 ]
88 } 87 }
OLDNEW
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/browser/net/image_fetcher.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698