Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: components/sync_bookmarks/BUILD.gn

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/sync_bookmarks.gypi ('k') | components/sync_bookmarks/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
11 "bookmark_data_type_controller.cc", 11 "bookmark_data_type_controller.cc",
12 "bookmark_data_type_controller.h", 12 "bookmark_data_type_controller.h",
13 "bookmark_model_associator.cc", 13 "bookmark_model_associator.cc",
14 "bookmark_model_associator.h", 14 "bookmark_model_associator.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//components/bookmarks/browser", 19 "//components/bookmarks/browser",
20 "//components/favicon/core", 20 "//components/favicon/core",
21 "//components/history/core/browser", 21 "//components/history/core/browser",
22 "//components/sync",
22 "//components/sync_driver", 23 "//components/sync_driver",
23 "//components/undo", 24 "//components/undo",
24 "//sync",
25 "//ui/gfx", 25 "//ui/gfx",
26 ] 26 ]
27 } 27 }
28 28
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 "//components/bookmarks/browser", 39 "//components/bookmarks/browser",
40 "//components/bookmarks/test", 40 "//components/bookmarks/test",
41 "//components/history/core/browser", 41 "//components/history/core/browser",
42 "//components/prefs:test_support", 42 "//components/prefs:test_support",
43 "//components/sync",
43 "//components/sync_driver", 44 "//components/sync_driver",
44 "//components/sync_driver:test_support", 45 "//components/sync_driver:test_support",
45 "//sync",
46 "//testing/gmock", 46 "//testing/gmock",
47 "//testing/gtest", 47 "//testing/gtest",
48 ] 48 ]
49 } 49 }
OLDNEW
« no previous file with comments | « components/sync_bookmarks.gypi ('k') | components/sync_bookmarks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698