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

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

Issue 2526773002: Move iOS ImageFetcher to ios/web/public (Closed)
Patch Set: Rename headers 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 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",
(...skipping 26 matching lines...) Expand all
37 "//base", 37 "//base",
38 "//components/component_updater", 38 "//components/component_updater",
39 "//components/content_settings/core/browser", 39 "//components/content_settings/core/browser",
40 "//components/pref_registry", 40 "//components/pref_registry",
41 "//components/prefs", 41 "//components/prefs",
42 "//components/proxy_config", 42 "//components/proxy_config",
43 "//components/update_client", 43 "//components/update_client",
44 "//ios/chrome/browser", 44 "//ios/chrome/browser",
45 "//ios/chrome/browser/browser_state", 45 "//ios/chrome/browser/browser_state",
46 "//ios/chrome/browser/browsing_data", 46 "//ios/chrome/browser/browsing_data",
47 "//ios/chrome/browser/webp_transcode",
48 "//ios/net", 47 "//ios/net",
49 "//ios/web", 48 "//ios/web",
49 "//ios/web/public/image_fetcher",
50 "//net", 50 "//net",
51 "//net:extras", 51 "//net:extras",
52 "//url", 52 "//url",
53 ] 53 ]
54 allow_circular_includes_from = [ 54 allow_circular_includes_from = [
55 "//ios/chrome/browser", 55 "//ios/chrome/browser",
56 "//ios/chrome/browser/browser_state", 56 "//ios/chrome/browser/browser_state",
57 ] 57 ]
58 } 58 }
59 59
60 source_set("test_support") { 60 source_set("test_support") {
61 testonly = true 61 testonly = true
62 sources = [ 62 sources = [
63 "mock_image_fetcher.h", 63 "mock_image_fetcher.h",
64 "mock_image_fetcher.mm", 64 "mock_image_fetcher.mm",
65 ] 65 ]
66 deps = [ 66 deps = [
67 ":net", 67 ":net",
68 "//testing/gmock", 68 "//testing/gmock",
69 ] 69 ]
70 } 70 }
71 71
72 source_set("unit_tests") { 72 source_set("unit_tests") {
73 configs += [ "//build/config/compiler:enable_arc" ] 73 configs += [ "//build/config/compiler:enable_arc" ]
74 testonly = true 74 testonly = true
75 sources = [ 75 sources = [
76 "cookie_util_unittest.mm", 76 "cookie_util_unittest.mm",
77 "image_fetcher_unittest.mm",
78 "metrics_network_client_unittest.mm", 77 "metrics_network_client_unittest.mm",
79 "retryable_url_fetcher_unittest.mm", 78 "retryable_url_fetcher_unittest.mm",
80 ] 79 ]
81 deps = [ 80 deps = [
82 ":net", 81 ":net",
83 "//base", 82 "//base",
84 "//base/test:test_support", 83 "//base/test:test_support",
85 "//ios/web:test_support", 84 "//ios/web:test_support",
86 "//net", 85 "//net",
87 "//net:test_support", 86 "//net:test_support",
88 "//testing/gtest", 87 "//testing/gtest",
89 ] 88 ]
90 } 89 }
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