| 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", |
| 18 "//components/keyed_service/core", |
| 16 "//components/strings", | 19 "//components/strings", |
| 17 "//ui/base", | 20 "//ui/base", |
| 18 "//url", | 21 "//url", |
| 19 ] | 22 ] |
| 20 } | 23 } |
| 21 | 24 |
| 22 source_set("unit_tests") { | 25 source_set("unit_tests") { |
| 23 testonly = true | 26 testonly = true |
| 24 sources = [ | 27 sources = [ |
| 25 "managed_bookmarks_tracker_unittest.cc", | 28 "managed_bookmarks_tracker_unittest.cc", |
| 26 ] | 29 ] |
| 27 | 30 |
| 28 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 31 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 29 | 32 |
| 30 deps = [ | 33 deps = [ |
| 31 ":managed", | 34 ":managed", |
| 32 "//base", | 35 "//base", |
| 33 "//base:prefs", | 36 "//base:prefs", |
| 34 "//base:prefs_test_support", | 37 "//base:prefs_test_support", |
| 35 "//components/bookmarks/browser", | 38 "//components/bookmarks/browser", |
| 36 "//components/bookmarks/common", | 39 "//components/bookmarks/common", |
| 37 "//components/bookmarks/test", | 40 "//components/bookmarks/test", |
| 38 "//components/strings", | 41 "//components/strings", |
| 39 "//testing/gmock", | 42 "//testing/gmock", |
| 40 "//testing/gtest", | 43 "//testing/gtest", |
| 41 "//ui/base", | 44 "//ui/base", |
| 42 "//url", | 45 "//url", |
| 43 ] | 46 ] |
| 44 } | 47 } |
| OLD | NEW |