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

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

Issue 2886443002: [Doodle] Move image fetching from LogoBridge to DoodleService (Closed)
Patch Set: comment Created 3 years, 7 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
« no previous file with comments | « chrome/browser/doodle/doodle_service_factory.cc ('k') | components/doodle/DEPS » ('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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("doodle") { 5 static_library("doodle") {
6 sources = [ 6 sources = [
7 "doodle_fetcher.h", 7 "doodle_fetcher.h",
8 "doodle_fetcher_impl.cc", 8 "doodle_fetcher_impl.cc",
9 "doodle_fetcher_impl.h", 9 "doodle_fetcher_impl.h",
10 "doodle_service.cc", 10 "doodle_service.cc",
11 "doodle_service.h", 11 "doodle_service.h",
12 "doodle_types.cc", 12 "doodle_types.cc",
13 "doodle_types.h", 13 "doodle_types.h",
14 "pref_names.cc", 14 "pref_names.cc",
15 "pref_names.h", 15 "pref_names.h",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//base", 19 "//base",
20 "//components/data_use_measurement/core", 20 "//components/data_use_measurement/core",
21 "//components/google/core/browser", 21 "//components/google/core/browser",
22 "//components/image_fetcher/core",
22 "//components/keyed_service/core", 23 "//components/keyed_service/core",
23 "//components/prefs", 24 "//components/prefs",
24 "//net", 25 "//net",
26 "//ui/gfx",
25 ] 27 ]
26 } 28 }
27 29
28 source_set("unit_tests") { 30 source_set("unit_tests") {
29 testonly = true 31 testonly = true
30 sources = [ 32 sources = [
31 "doodle_fetcher_impl_unittest.cc", 33 "doodle_fetcher_impl_unittest.cc",
32 "doodle_service_unittest.cc", 34 "doodle_service_unittest.cc",
33 "doodle_types_unittest.cc", 35 "doodle_types_unittest.cc",
34 ] 36 ]
35 37
36 deps = [ 38 deps = [
37 ":doodle", 39 ":doodle",
38 "//components/google/core/browser", 40 "//components/google/core/browser",
41 "//components/image_fetcher/core",
39 "//components/prefs:test_support", 42 "//components/prefs:test_support",
40 "//net:test_support", 43 "//net:test_support",
41 "//ui/base", 44 "//ui/base",
45 "//ui/gfx:test_support",
42 ] 46 ]
43 } 47 }
OLDNEW
« no previous file with comments | « chrome/browser/doodle/doodle_service_factory.cc ('k') | components/doodle/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698