| 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 static_library("managed") { |
| 6 sources = [ | 6 sources = [ |
| 7 "managed_bookmark_service.cc", | 7 "managed_bookmark_service.cc", |
| 8 "managed_bookmark_service.h", | 8 "managed_bookmark_service.h", |
| 9 "managed_bookmark_util.cc", | 9 "managed_bookmark_util.cc", |
| 10 "managed_bookmark_util.h", | 10 "managed_bookmark_util.h", |
| 11 "managed_bookmarks_tracker.cc", | 11 "managed_bookmarks_tracker.cc", |
| 12 "managed_bookmarks_tracker.h", | 12 "managed_bookmarks_tracker.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 39 "//components/bookmarks/common", | 39 "//components/bookmarks/common", |
| 40 "//components/bookmarks/test", | 40 "//components/bookmarks/test", |
| 41 "//components/prefs:test_support", | 41 "//components/prefs:test_support", |
| 42 "//components/strings", | 42 "//components/strings", |
| 43 "//testing/gmock", | 43 "//testing/gmock", |
| 44 "//testing/gtest", | 44 "//testing/gtest", |
| 45 "//ui/base", | 45 "//ui/base", |
| 46 "//url", | 46 "//url", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| OLD | NEW |