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

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

Issue 2744253002: [Doodle] Cache the DoodleConfig in prefs (Closed)
Patch Set: pass clock as unique_ptr 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 | « no previous file | 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",
15 "pref_names.h",
14 ] 16 ]
15 17
16 deps = [ 18 deps = [
17 "//base", 19 "//base",
18 "//components/data_use_measurement/core", 20 "//components/data_use_measurement/core",
19 "//components/google/core/browser", 21 "//components/google/core/browser",
22 "//components/prefs",
20 "//net", 23 "//net",
21 ] 24 ]
22 } 25 }
23 26
24 source_set("unit_tests") { 27 source_set("unit_tests") {
25 testonly = true 28 testonly = true
26 sources = [ 29 sources = [
27 "doodle_fetcher_impl_unittest.cc", 30 "doodle_fetcher_impl_unittest.cc",
28 "doodle_service_unittest.cc", 31 "doodle_service_unittest.cc",
29 "doodle_types_unittest.cc", 32 "doodle_types_unittest.cc",
30 ] 33 ]
31 34
32 deps = [ 35 deps = [
33 ":doodle", 36 ":doodle",
34 "//components/google/core/browser", 37 "//components/google/core/browser",
38 "//components/prefs:test_support",
35 "//net:test_support", 39 "//net:test_support",
36 "//ui/base", 40 "//ui/base",
37 ] 41 ]
38 } 42 }
OLDNEW
« no previous file with comments | « no previous file | components/doodle/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698