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

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

Issue 2697043005: Use component ImageFetcher instead of iOS one. (Closed)
Patch Set: Created 3 years, 10 months 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
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("suggestions") { 5 source_set("suggestions") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "image_fetcher_impl.h",
9 "image_fetcher_impl.mm",
10 "ios_image_decoder_impl.h", 8 "ios_image_decoder_impl.h",
11 "ios_image_decoder_impl.mm", 9 "ios_image_decoder_impl.mm",
12 "suggestions_service_factory.h", 10 "suggestions_service_factory.h",
13 "suggestions_service_factory.mm", 11 "suggestions_service_factory.mm",
14 ] 12 ]
15 deps = [ 13 deps = [
16 "//base", 14 "//base",
17 "//components/browser_sync", 15 "//components/browser_sync",
18 "//components/image_fetcher", 16 "//components/image_fetcher",
19 "//components/image_fetcher/ios", 17 "//components/image_fetcher/ios",
(...skipping 18 matching lines...) Expand all
38 sources = [ 36 sources = [
39 "ios_image_decoder_impl_unittest.mm", 37 "ios_image_decoder_impl_unittest.mm",
40 ] 38 ]
41 deps = [ 39 deps = [
42 ":suggestions", 40 ":suggestions",
43 "//base", 41 "//base",
44 "//testing/gtest", 42 "//testing/gtest",
45 "//ui/gfx", 43 "//ui/gfx",
46 ] 44 ]
47 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698