OLD | NEW |
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_manager.h", | 9 "image_manager.h", |
10 "suggestions_pref_names.cc", | 10 "suggestions_pref_names.cc", |
11 "suggestions_pref_names.h", | 11 "suggestions_pref_names.h", |
12 "suggestions_service.cc", | 12 "suggestions_service.cc", |
13 "suggestions_service.h", | 13 "suggestions_service.h", |
14 "suggestions_store.cc", | 14 "suggestions_store.cc", |
15 "suggestions_store.h", | 15 "suggestions_store.h", |
| 16 "suggestions_utils.cc", |
| 17 "suggestions_utils.h", |
16 ] | 18 ] |
17 | 19 |
18 deps = [ | 20 deps = [ |
19 "//base", | 21 "//base", |
20 "//components/keyed_service/core", | 22 "//components/keyed_service/core", |
21 "//components/pref_registry", | 23 "//components/pref_registry", |
22 "//components/suggestions/proto", | 24 "//components/suggestions/proto", |
23 "//components/variations", | 25 "//components/variations", |
24 "//net", | 26 "//net", |
25 "//ui/gfx", | 27 "//ui/gfx", |
26 "//url", | 28 "//url", |
27 ] | 29 ] |
28 } | 30 } |
OLD | NEW |