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

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

Issue 2643753002: Add the suggestions UI in chrome (Closed)
Patch Set: Convert to ARC Created 3 years, 11 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", 8 "image_fetcher_impl.h",
9 "image_fetcher_impl.mm", 9 "image_fetcher_impl.mm",
10 "ios_image_decoder_impl.h", 10 "ios_image_decoder_impl.h",
11 "ios_image_decoder_impl.mm", 11 "ios_image_decoder_impl.mm",
12 "suggestions_coordinator.h",
13 "suggestions_coordinator.mm",
12 "suggestions_service_factory.h", 14 "suggestions_service_factory.h",
13 "suggestions_service_factory.mm", 15 "suggestions_service_factory.mm",
14 ] 16 ]
15 deps = [ 17 deps = [
16 "//base", 18 "//base",
17 "//components/browser_sync", 19 "//components/browser_sync",
18 "//components/image_fetcher", 20 "//components/image_fetcher",
19 "//components/keyed_service/ios", 21 "//components/keyed_service/ios",
20 "//components/leveldb_proto", 22 "//components/leveldb_proto",
21 "//components/signin/core/browser", 23 "//components/signin/core/browser",
22 "//components/suggestions", 24 "//components/suggestions",
25 "//ios/chrome/app/strings",
26 "//ios/chrome/browser",
23 "//ios/chrome/browser/browser_state", 27 "//ios/chrome/browser/browser_state",
24 "//ios/chrome/browser/signin", 28 "//ios/chrome/browser/signin",
25 "//ios/chrome/browser/sync", 29 "//ios/chrome/browser/sync",
30 "//ios/chrome/browser/ui/suggestions",
26 "//ios/web", 31 "//ios/web",
27 "//ios/web/public/image_fetcher", 32 "//ios/web/public/image_fetcher",
28 "//net", 33 "//net",
29 "//skia", 34 "//skia",
35 "//ui/base",
30 "//ui/gfx", 36 "//ui/gfx",
31 ] 37 ]
32 } 38 }
33 39
34 source_set("unit_tests") { 40 source_set("unit_tests") {
35 configs += [ "//build/config/compiler:enable_arc" ] 41 configs += [ "//build/config/compiler:enable_arc" ]
36 testonly = true 42 testonly = true
37 sources = [ 43 sources = [
38 "ios_image_decoder_impl_unittest.mm", 44 "ios_image_decoder_impl_unittest.mm",
39 ] 45 ]
40 deps = [ 46 deps = [
41 ":suggestions", 47 ":suggestions",
42 "//base", 48 "//base",
43 "//testing/gtest", 49 "//testing/gtest",
44 "//ui/gfx", 50 "//ui/gfx",
45 ] 51 ]
46 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698