| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("sync_bookmarks") { | 7 source_set("sync_bookmarks") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bookmark_change_processor.cc", | 9 "bookmark_change_processor.cc", |
| 10 "bookmark_change_processor.h", | 10 "bookmark_change_processor.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 source_set("unit_tests") { | 29 source_set("unit_tests") { |
| 30 testonly = true | 30 testonly = true |
| 31 | 31 |
| 32 sources = [ | 32 sources = [ |
| 33 "bookmark_data_type_controller_unittest.cc", | 33 "bookmark_data_type_controller_unittest.cc", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 ":sync_bookmarks", | 37 ":sync_bookmarks", |
| 38 "//base", | 38 "//base", |
| 39 "//base:prefs_test_support", | |
| 40 "//components/bookmarks/browser", | 39 "//components/bookmarks/browser", |
| 41 "//components/bookmarks/test", | 40 "//components/bookmarks/test", |
| 42 "//components/history/core/browser", | 41 "//components/history/core/browser", |
| 42 "//components/prefs:test_support", |
| 43 "//components/sync_driver", | 43 "//components/sync_driver", |
| 44 "//components/sync_driver:test_support", | 44 "//components/sync_driver:test_support", |
| 45 "//sync", | 45 "//sync", |
| 46 "//testing/gmock", | 46 "//testing/gmock", |
| 47 "//testing/gtest", | 47 "//testing/gtest", |
| 48 ] | 48 ] |
| 49 } | 49 } |
| OLD | NEW |