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("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "profile_sync_components_factory_impl.cc", | 9 "profile_sync_components_factory_impl.cc", |
10 "profile_sync_components_factory_impl.h", | 10 "profile_sync_components_factory_impl.h", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "//sync", | 42 "//sync", |
43 "//ui/base", | 43 "//ui/base", |
44 ] | 44 ] |
45 } | 45 } |
46 | 46 |
47 source_set("unit_tests") { | 47 source_set("unit_tests") { |
48 testonly = true | 48 testonly = true |
49 | 49 |
50 sources = [ | 50 sources = [ |
51 "profile_sync_service_autofill_unittest.cc", | 51 "profile_sync_service_autofill_unittest.cc", |
| 52 "profile_sync_service_bookmark_unittest.cc", |
52 "profile_sync_service_startup_unittest.cc", | 53 "profile_sync_service_startup_unittest.cc", |
53 "profile_sync_service_typed_url_unittest.cc", | 54 "profile_sync_service_typed_url_unittest.cc", |
54 "profile_sync_service_unittest.cc", | 55 "profile_sync_service_unittest.cc", |
55 ] | 56 ] |
56 | 57 |
57 deps = [ | 58 deps = [ |
58 ":browser", | 59 ":browser", |
59 ":test_support", | 60 ":test_support", |
60 "//base", | 61 "//base", |
61 "//base/test:test_support", | 62 "//base/test:test_support", |
62 "//components/autofill/core/browser:test_support", | 63 "//components/autofill/core/browser:test_support", |
63 "//components/autofill/core/common:common", | 64 "//components/autofill/core/common:common", |
| 65 "//components/bookmarks/browser:browser", |
| 66 "//components/bookmarks/managed:managed", |
| 67 "//components/bookmarks/test:test", |
64 "//components/browser_sync/common", | 68 "//components/browser_sync/common", |
65 "//components/dom_distiller/core", | 69 "//components/dom_distiller/core", |
66 "//components/history/core/browser:browser", | 70 "//components/history/core/browser:browser", |
67 "//components/invalidation/impl", | 71 "//components/invalidation/impl", |
68 "//components/invalidation/public", | 72 "//components/invalidation/public", |
69 "//components/prefs", | 73 "//components/prefs", |
70 "//components/signin/core/browser", | 74 "//components/signin/core/browser", |
71 "//components/signin/core/browser:test_support", | 75 "//components/signin/core/browser:test_support", |
72 "//components/signin/core/common:common", | 76 "//components/signin/core/common:common", |
73 "//components/strings", | 77 "//components/strings", |
| 78 "//components/sync_bookmarks:sync_bookmarks", |
74 "//components/sync_driver", | 79 "//components/sync_driver", |
75 "//components/sync_driver:test_support", | 80 "//components/sync_driver:test_support", |
76 "//components/sync_sessions", | 81 "//components/sync_sessions", |
77 "//components/sync_sessions:test_support", | 82 "//components/sync_sessions:test_support", |
78 "//components/syncable_prefs", | 83 "//components/syncable_prefs", |
79 "//components/syncable_prefs:test_support", | 84 "//components/syncable_prefs:test_support", |
80 "//components/version_info", | 85 "//components/version_info", |
81 "//components/version_info:generate_version_info", | 86 "//components/version_info:generate_version_info", |
82 "//components/webdata_services:test_support", | 87 "//components/webdata_services:test_support", |
83 "//google_apis", | 88 "//google_apis", |
84 "//net", | 89 "//net", |
| 90 "//sync:test_support_sync_internal_api", |
85 "//testing/gmock", | 91 "//testing/gmock", |
86 "//testing/gtest", | 92 "//testing/gtest", |
87 "//ui/base", | 93 "//ui/base", |
88 ] | 94 ] |
89 } | 95 } |
90 | 96 |
91 source_set("test_support") { | 97 source_set("test_support") { |
92 testonly = true | 98 testonly = true |
93 sources = [ | 99 sources = [ |
94 "abstract_profile_sync_service_test.cc", | 100 "abstract_profile_sync_service_test.cc", |
(...skipping 23 matching lines...) Expand all Loading... |
118 "//components/sync_driver:test_support", | 124 "//components/sync_driver:test_support", |
119 "//components/sync_sessions:test_support", | 125 "//components/sync_sessions:test_support", |
120 "//components/syncable_prefs:test_support", | 126 "//components/syncable_prefs:test_support", |
121 "//google_apis", | 127 "//google_apis", |
122 "//net:test_support", | 128 "//net:test_support", |
123 "//sync:test_support_sync_core", | 129 "//sync:test_support_sync_core", |
124 "//sync:test_support_sync_internal_api", | 130 "//sync:test_support_sync_internal_api", |
125 "//testing/gmock", | 131 "//testing/gmock", |
126 ] | 132 ] |
127 } | 133 } |
OLD | NEW |