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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 "//components/webdata_services:test_support", | 90 "//components/webdata_services:test_support", |
91 "//google_apis", | 91 "//google_apis", |
92 "//net", | 92 "//net", |
93 "//sync:test_support_sync_internal_api", | 93 "//sync:test_support_sync_internal_api", |
94 "//testing/gmock", | 94 "//testing/gmock", |
95 "//testing/gtest", | 95 "//testing/gtest", |
96 "//ui/base", | 96 "//ui/base", |
97 ] | 97 ] |
98 } | 98 } |
99 | 99 |
100 source_set("test_support") { | 100 static_library("test_support") { |
101 testonly = true | 101 testonly = true |
102 sources = [ | 102 sources = [ |
103 "abstract_profile_sync_service_test.cc", | 103 "abstract_profile_sync_service_test.cc", |
104 "abstract_profile_sync_service_test.h", | 104 "abstract_profile_sync_service_test.h", |
105 "profile_sync_service_mock.cc", | 105 "profile_sync_service_mock.cc", |
106 "profile_sync_service_mock.h", | 106 "profile_sync_service_mock.h", |
107 "profile_sync_test_util.cc", | 107 "profile_sync_test_util.cc", |
108 "profile_sync_test_util.h", | 108 "profile_sync_test_util.h", |
109 "test_http_bridge_factory.cc", | 109 "test_http_bridge_factory.cc", |
110 "test_http_bridge_factory.h", | 110 "test_http_bridge_factory.h", |
(...skipping 16 matching lines...) Expand all Loading... |
127 "//components/sync_driver:test_support", | 127 "//components/sync_driver:test_support", |
128 "//components/sync_sessions:test_support", | 128 "//components/sync_sessions:test_support", |
129 "//components/syncable_prefs:test_support", | 129 "//components/syncable_prefs:test_support", |
130 "//google_apis", | 130 "//google_apis", |
131 "//net:test_support", | 131 "//net:test_support", |
132 "//sync:test_support_sync_core", | 132 "//sync:test_support_sync_core", |
133 "//sync:test_support_sync_internal_api", | 133 "//sync:test_support_sync_internal_api", |
134 "//testing/gmock", | 134 "//testing/gmock", |
135 ] | 135 ] |
136 } | 136 } |
OLD | NEW |