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", |
11 "bookmark_client.cc", | 11 "bookmark_client.cc", |
12 "bookmark_client.h", | 12 "bookmark_client.h", |
13 "bookmark_codec.cc", | 13 "bookmark_codec.cc", |
14 "bookmark_codec.h", | 14 "bookmark_codec.h", |
15 "bookmark_expanded_state_tracker.cc", | 15 "bookmark_expanded_state_tracker.cc", |
16 "bookmark_expanded_state_tracker.h", | 16 "bookmark_expanded_state_tracker.h", |
17 "bookmark_index.cc", | |
18 "bookmark_index.h", | |
19 "bookmark_match.cc", | |
20 "bookmark_match.h", | |
21 "bookmark_model.cc", | 17 "bookmark_model.cc", |
22 "bookmark_model.h", | 18 "bookmark_model.h", |
23 "bookmark_model_observer.h", | 19 "bookmark_model_observer.h", |
24 "bookmark_node.cc", | 20 "bookmark_node.cc", |
25 "bookmark_node.h", | 21 "bookmark_node.h", |
26 "bookmark_node_data.cc", | 22 "bookmark_node_data.cc", |
27 "bookmark_node_data.h", | 23 "bookmark_node_data.h", |
28 "bookmark_node_data_ios.cc", | 24 "bookmark_node_data_ios.cc", |
29 "bookmark_node_data_mac.cc", | 25 "bookmark_node_data_mac.cc", |
30 "bookmark_pasteboard_helper_mac.h", | 26 "bookmark_pasteboard_helper_mac.h", |
31 "bookmark_pasteboard_helper_mac.mm", | 27 "bookmark_pasteboard_helper_mac.mm", |
32 "bookmark_storage.cc", | 28 "bookmark_storage.cc", |
33 "bookmark_storage.h", | 29 "bookmark_storage.h", |
34 "bookmark_undo_delegate.h", | 30 "bookmark_undo_delegate.h", |
35 "bookmark_undo_provider.h", | 31 "bookmark_undo_provider.h", |
36 "bookmark_utils.cc", | 32 "bookmark_utils.cc", |
37 "bookmark_utils.h", | 33 "bookmark_utils.h", |
38 "scoped_group_bookmark_actions.cc", | 34 "scoped_group_bookmark_actions.cc", |
39 "scoped_group_bookmark_actions.h", | 35 "scoped_group_bookmark_actions.h", |
40 "startup_task_runner_service.cc", | 36 "startup_task_runner_service.cc", |
41 "startup_task_runner_service.h", | 37 "startup_task_runner_service.h", |
| 38 "titled_url_index.cc", |
| 39 "titled_url_index.h", |
| 40 "titled_url_match.cc", |
| 41 "titled_url_match.h", |
42 "titled_url_node.h", | 42 "titled_url_node.h", |
43 "titled_url_node_sorter.h", | 43 "titled_url_node_sorter.h", |
44 "typed_count_sorter.cc", | 44 "typed_count_sorter.cc", |
45 "typed_count_sorter.h", | 45 "typed_count_sorter.h", |
46 ] | 46 ] |
47 | 47 |
48 public_deps = [ | 48 public_deps = [ |
49 "//components/bookmarks/common", | 49 "//components/bookmarks/common", |
50 ] | 50 ] |
51 | 51 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "//components/bookmarks/test", | 115 "//components/bookmarks/test", |
116 "//components/favicon_base", | 116 "//components/favicon_base", |
117 "//components/pref_registry", | 117 "//components/pref_registry", |
118 "//components/prefs", | 118 "//components/prefs", |
119 "//components/prefs:test_support", | 119 "//components/prefs:test_support", |
120 "//testing/gtest", | 120 "//testing/gtest", |
121 "//ui/base", | 121 "//ui/base", |
122 "//url", | 122 "//url", |
123 ] | 123 ] |
124 } | 124 } |
OLD | NEW |