| 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 static_library("sync_bookmarks") { | 7 static_library("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 22 matching lines...) Expand all Loading... |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 ":sync_bookmarks", | 36 ":sync_bookmarks", |
| 37 "//base", | 37 "//base", |
| 38 "//components/bookmarks/browser", | 38 "//components/bookmarks/browser", |
| 39 "//components/bookmarks/test", | 39 "//components/bookmarks/test", |
| 40 "//components/history/core/browser", | 40 "//components/history/core/browser", |
| 41 "//components/prefs:test_support", | 41 "//components/prefs:test_support", |
| 42 "//components/sync", | 42 "//components/sync", |
| 43 "//components/sync:test_support_sync_driver", | 43 "//components/sync:test_support_driver", |
| 44 "//components/sync:test_support_model", |
| 44 "//testing/gmock", | 45 "//testing/gmock", |
| 45 "//testing/gtest", | 46 "//testing/gtest", |
| 46 ] | 47 ] |
| 47 } | 48 } |
| OLD | NEW |