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 "//base:i18n", |
| 43 "//base:prefs", |
42 "//components/bookmarks/common", | 44 "//components/bookmarks/common", |
43 "//components/favicon_base", | 45 "//components/favicon_base", |
44 "//components/keyed_service/core", | 46 "//components/keyed_service/core", |
45 "//components/pref_registry", | 47 "//components/pref_registry", |
46 "//components/query_parser", | 48 "//components/query_parser", |
47 "//components/startup_metric_utils", | 49 "//components/startup_metric_utils", |
48 "//components/strings", | 50 "//components/strings", |
49 "//net", | 51 "//net", |
50 "//third_party/icu", | 52 "//third_party/icu", |
51 "//ui/base", | 53 "//ui/base", |
(...skipping 13 matching lines...) Expand all Loading... |
65 sources = [ | 67 sources = [ |
66 "bookmark_codec_unittest.cc", | 68 "bookmark_codec_unittest.cc", |
67 "bookmark_expanded_state_tracker_unittest.cc", | 69 "bookmark_expanded_state_tracker_unittest.cc", |
68 "bookmark_index_unittest.cc", | 70 "bookmark_index_unittest.cc", |
69 "bookmark_model_unittest.cc", | 71 "bookmark_model_unittest.cc", |
70 "bookmark_utils_unittest.cc", | 72 "bookmark_utils_unittest.cc", |
71 ] | 73 ] |
72 | 74 |
73 deps = [ | 75 deps = [ |
74 ":browser", | 76 ":browser", |
| 77 "//base:prefs", |
| 78 "//base:prefs_test_support", |
| 79 "//components/bookmarks/common", |
| 80 "//components/bookmarks/test", |
| 81 "//components/pref_registry", |
75 "//testing/gtest", | 82 "//testing/gtest", |
76 "//ui/base", | 83 "//ui/base", |
| 84 "//url", |
77 ] | 85 ] |
78 } | 86 } |
OLD | NEW |