| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("test") { | |
| 6 testonly = true | |
| 7 sources = [ | |
| 8 "fake_sync_service_factory.cc", | |
| 9 "fake_sync_service_factory.h", | |
| 10 "test_chrome_browser_provider.h", | |
| 11 "test_chrome_browser_provider.mm", | |
| 12 "test_chrome_provider_initializer.cc", | |
| 13 "test_chrome_provider_initializer.h", | |
| 14 "test_updatable_resource_provider.h", | |
| 15 "test_updatable_resource_provider.mm", | |
| 16 ] | |
| 17 | |
| 18 deps = [ | |
| 19 "//base", | |
| 20 "//components/keyed_service/core", | |
| 21 "//components/keyed_service/ios", | |
| 22 "//ios/public/provider/chrome/browser", | |
| 23 "//sync", | |
| 24 "//testing/gtest", | |
| 25 ] | |
| 26 } | |
| OLD | NEW |