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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 source_set("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "base_bookmark_model_observer.cc", | 9 "base_bookmark_model_observer.cc", |
10 "base_bookmark_model_observer.h", | 10 "base_bookmark_model_observer.h", |
(...skipping 21 matching lines...) Expand all Loading... |
32 "bookmark_storage.cc", | 32 "bookmark_storage.cc", |
33 "bookmark_storage.h", | 33 "bookmark_storage.h", |
34 "bookmark_utils.cc", | 34 "bookmark_utils.cc", |
35 "bookmark_utils.h", | 35 "bookmark_utils.h", |
36 "scoped_group_bookmark_actions.cc", | 36 "scoped_group_bookmark_actions.cc", |
37 "scoped_group_bookmark_actions.h", | 37 "scoped_group_bookmark_actions.h", |
38 ] | 38 ] |
39 | 39 |
40 deps = [ | 40 deps = [ |
41 "//base", | 41 "//base", |
| 42 "//components/bookmarks/common", |
| 43 "//components/favicon_base", |
| 44 "//components/keyed_service/core", |
| 45 "//components/pref_registry", |
| 46 "//components/query_parser", |
| 47 "//components/startup_metric_utils", |
| 48 "//components/strings", |
42 "//net", | 49 "//net", |
43 "//third_party/icu", | 50 "//third_party/icu", |
44 "//ui/base", | 51 "//ui/base", |
45 "//ui/gfx", | 52 "//ui/gfx", |
46 "//url", | 53 "//url", |
47 "//components/bookmarks/common", | |
48 "//components/strings", | |
49 "//components/favicon_base", | |
50 "//components/keyed_service/core", | |
51 "//components/pref_registry", | |
52 "//components/query_parser", | |
53 "//components/startup_metric_utils", | |
54 ] | 54 ] |
55 | 55 |
56 if (toolkit_views) { | 56 if (toolkit_views) { |
57 sources += [ | 57 sources += [ |
58 "bookmark_node_data_views.cc", | 58 "bookmark_node_data_views.cc", |
59 ] | 59 ] |
60 } | 60 } |
61 } | 61 } |
OLD | NEW |