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

Side by Side Diff: components/suggestions/BUILD.gn

Issue 2761303002: Move common ImageFetcher component files to core/ (Closed)
Patch Set: Rebased. Created 3 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 static_library("suggestions") { 5 static_library("suggestions") {
6 sources = [ 6 sources = [
7 "blacklist_store.cc", 7 "blacklist_store.cc",
8 "blacklist_store.h", 8 "blacklist_store.h",
9 "image_encoder.h", 9 "image_encoder.h",
10 "image_manager.cc", 10 "image_manager.cc",
(...skipping 11 matching lines...) Expand all
22 "//base", 22 "//base",
23 "//components/prefs", 23 "//components/prefs",
24 "//components/suggestions/proto", 24 "//components/suggestions/proto",
25 "//net", 25 "//net",
26 "//ui/gfx", 26 "//ui/gfx",
27 "//url", 27 "//url",
28 ] 28 ]
29 deps = [ 29 deps = [
30 "//components/data_use_measurement/core", 30 "//components/data_use_measurement/core",
31 "//components/google/core/browser", 31 "//components/google/core/browser",
32 "//components/image_fetcher", 32 "//components/image_fetcher/core",
33 "//components/keyed_service/core", 33 "//components/keyed_service/core",
34 "//components/leveldb_proto", 34 "//components/leveldb_proto",
35 "//components/pref_registry", 35 "//components/pref_registry",
36 "//components/signin/core/browser", 36 "//components/signin/core/browser",
37 "//components/sync", 37 "//components/sync",
38 "//components/variations", 38 "//components/variations",
39 "//components/variations/net", 39 "//components/variations/net",
40 "//google_apis", 40 "//google_apis",
41 ] 41 ]
42 42
43 if (is_ios) { 43 if (is_ios) {
44 sources += [ "image_encoder_ios.mm" ] 44 sources += [ "image_encoder_ios.mm" ]
45 } else { 45 } else {
46 sources += [ "image_encoder.cc" ] 46 sources += [ "image_encoder.cc" ]
47 } 47 }
48 } 48 }
49 49
50 source_set("unit_tests") { 50 source_set("unit_tests") {
51 testonly = true 51 testonly = true
52 sources = [ 52 sources = [
53 "blacklist_store_unittest.cc", 53 "blacklist_store_unittest.cc",
54 "image_manager_unittest.cc", 54 "image_manager_unittest.cc",
55 "suggestions_service_impl_unittest.cc", 55 "suggestions_service_impl_unittest.cc",
56 "suggestions_store_unittest.cc", 56 "suggestions_store_unittest.cc",
57 ] 57 ]
58 deps = [ 58 deps = [
59 ":suggestions", 59 ":suggestions",
60 "//base/test:test_support", 60 "//base/test:test_support",
61 "//components/image_fetcher", 61 "//components/image_fetcher/core",
62 "//components/leveldb_proto:test_support", 62 "//components/leveldb_proto:test_support",
63 "//components/signin/core/browser:test_support", 63 "//components/signin/core/browser:test_support",
64 "//components/sync", 64 "//components/sync",
65 "//components/sync:test_support_driver", 65 "//components/sync:test_support_driver",
66 "//components/sync_preferences:test_support", 66 "//components/sync_preferences:test_support",
67 "//net:test_support", 67 "//net:test_support",
68 "//testing/gmock", 68 "//testing/gmock",
69 "//testing/gtest", 69 "//testing/gtest",
70 ] 70 ]
71 } 71 }
OLDNEW
« no previous file with comments | « components/ntp_tiles/icon_cacher_impl_unittest.cc ('k') | components/suggestions/image_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698