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 static_library("browser") { | 7 static_library("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 22 matching lines...) Expand all Loading... |
33 "bookmark_storage.h", | 33 "bookmark_storage.h", |
34 "bookmark_undo_delegate.h", | 34 "bookmark_undo_delegate.h", |
35 "bookmark_undo_provider.h", | 35 "bookmark_undo_provider.h", |
36 "bookmark_utils.cc", | 36 "bookmark_utils.cc", |
37 "bookmark_utils.h", | 37 "bookmark_utils.h", |
38 "scoped_group_bookmark_actions.cc", | 38 "scoped_group_bookmark_actions.cc", |
39 "scoped_group_bookmark_actions.h", | 39 "scoped_group_bookmark_actions.h", |
40 "startup_task_runner_service.cc", | 40 "startup_task_runner_service.cc", |
41 "startup_task_runner_service.h", | 41 "startup_task_runner_service.h", |
42 "titled_url_node.h", | 42 "titled_url_node.h", |
| 43 "titled_url_node_sorter.h", |
| 44 "typed_count_sorter.cc", |
| 45 "typed_count_sorter.h", |
43 ] | 46 ] |
44 | 47 |
45 public_deps = [ | 48 public_deps = [ |
46 "//components/bookmarks/common", | 49 "//components/bookmarks/common", |
47 ] | 50 ] |
48 | 51 |
49 deps = [ | 52 deps = [ |
50 "//base", | 53 "//base", |
51 "//base:i18n", | 54 "//base:i18n", |
52 "//components/favicon_base", | 55 "//components/favicon_base", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "//components/bookmarks/test", | 115 "//components/bookmarks/test", |
113 "//components/favicon_base", | 116 "//components/favicon_base", |
114 "//components/pref_registry", | 117 "//components/pref_registry", |
115 "//components/prefs", | 118 "//components/prefs", |
116 "//components/prefs:test_support", | 119 "//components/prefs:test_support", |
117 "//testing/gtest", | 120 "//testing/gtest", |
118 "//ui/base", | 121 "//ui/base", |
119 "//url", | 122 "//url", |
120 ] | 123 ] |
121 } | 124 } |
OLD | NEW |