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 17 matching lines...) Expand all Loading... |
28 "bookmark_node_data_ios.cc", | 28 "bookmark_node_data_ios.cc", |
29 "bookmark_node_data_mac.cc", | 29 "bookmark_node_data_mac.cc", |
30 "bookmark_pasteboard_helper_mac.h", | 30 "bookmark_pasteboard_helper_mac.h", |
31 "bookmark_pasteboard_helper_mac.mm", | 31 "bookmark_pasteboard_helper_mac.mm", |
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 "startup_task_runner_service.cc", |
| 39 "startup_task_runner_service.h", |
38 ] | 40 ] |
39 | 41 |
40 deps = [ | 42 deps = [ |
41 "//base", | 43 "//base", |
42 "//base:i18n", | 44 "//base:i18n", |
43 "//base:prefs", | 45 "//base:prefs", |
44 "//components/bookmarks/common", | 46 "//components/bookmarks/common", |
45 "//components/favicon_base", | 47 "//components/favicon_base", |
46 "//components/keyed_service/core", | 48 "//components/keyed_service/core", |
47 "//components/pref_registry", | 49 "//components/pref_registry", |
(...skipping 29 matching lines...) Expand all Loading... |
77 "//base:prefs", | 79 "//base:prefs", |
78 "//base:prefs_test_support", | 80 "//base:prefs_test_support", |
79 "//components/bookmarks/common", | 81 "//components/bookmarks/common", |
80 "//components/bookmarks/test", | 82 "//components/bookmarks/test", |
81 "//components/pref_registry", | 83 "//components/pref_registry", |
82 "//testing/gtest", | 84 "//testing/gtest", |
83 "//ui/base", | 85 "//ui/base", |
84 "//url", | 86 "//url", |
85 ] | 87 ] |
86 } | 88 } |
OLD | NEW |