OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("managed") { | 5 source_set("managed") { |
6 sources = [ | 6 sources = [ |
| 7 "managed_bookmark_service.cc", |
| 8 "managed_bookmark_service.h", |
7 "managed_bookmarks_tracker.cc", | 9 "managed_bookmarks_tracker.cc", |
8 "managed_bookmarks_tracker.h", | 10 "managed_bookmarks_tracker.h", |
9 ] | 11 ] |
10 | 12 |
11 deps = [ | 13 deps = [ |
12 "//base", | 14 "//base", |
13 "//base:prefs", | 15 "//base:prefs", |
14 "//components/bookmarks/browser", | 16 "//components/bookmarks/browser", |
15 "//components/bookmarks/common", | 17 "//components/bookmarks/common", |
16 "//components/strings", | 18 "//components/strings", |
(...skipping 18 matching lines...) Expand all Loading... |
35 "//components/bookmarks/browser", | 37 "//components/bookmarks/browser", |
36 "//components/bookmarks/common", | 38 "//components/bookmarks/common", |
37 "//components/bookmarks/test", | 39 "//components/bookmarks/test", |
38 "//components/strings", | 40 "//components/strings", |
39 "//testing/gmock", | 41 "//testing/gmock", |
40 "//testing/gtest", | 42 "//testing/gtest", |
41 "//ui/base", | 43 "//ui/base", |
42 "//url", | 44 "//url", |
43 ] | 45 ] |
44 } | 46 } |
OLD | NEW |