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

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

Issue 2752563003: [Doodle] Make DoodleService a KeyedService and add a factory (Closed)
Patch Set: Move factory to c/b/doodle 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
« 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/keyed_service/core",
22 "//components/prefs", 23 "//components/prefs",
23 "//net", 24 "//net",
24 ] 25 ]
25 } 26 }
26 27
27 source_set("unit_tests") { 28 source_set("unit_tests") {
28 testonly = true 29 testonly = true
29 sources = [ 30 sources = [
30 "doodle_fetcher_impl_unittest.cc", 31 "doodle_fetcher_impl_unittest.cc",
31 "doodle_service_unittest.cc", 32 "doodle_service_unittest.cc",
32 "doodle_types_unittest.cc", 33 "doodle_types_unittest.cc",
33 ] 34 ]
34 35
35 deps = [ 36 deps = [
36 ":doodle", 37 ":doodle",
37 "//components/google/core/browser", 38 "//components/google/core/browser",
38 "//components/prefs:test_support", 39 "//components/prefs:test_support",
39 "//net:test_support", 40 "//net:test_support",
40 "//ui/base", 41 "//ui/base",
41 ] 42 ]
42 } 43 }
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