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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "//testing/gtest", | 76 "//testing/gtest", |
77 "//ui/base", | 77 "//ui/base", |
78 ] | 78 ] |
79 } | 79 } |
80 | 80 |
81 source_set("test_support") { | 81 source_set("test_support") { |
82 testonly = true | 82 testonly = true |
83 sources = [ | 83 sources = [ |
84 "profile_sync_service_mock.cc", | 84 "profile_sync_service_mock.cc", |
85 "profile_sync_service_mock.h", | 85 "profile_sync_service_mock.h", |
| 86 "profile_sync_test_util.cc", |
| 87 "profile_sync_test_util.h", |
86 ] | 88 ] |
87 | 89 |
88 deps = [ | 90 deps = [ |
89 ":browser", | 91 ":browser", |
90 "//base", | 92 "//base", |
| 93 "//components/sync_driver", |
91 "//components/sync_driver:test_support", | 94 "//components/sync_driver:test_support", |
92 "//google_apis", | 95 "//google_apis", |
93 "//testing/gmock", | 96 "//testing/gmock", |
94 ] | 97 ] |
95 } | 98 } |
OLD | NEW |