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_string_provider.cc", |
| 9 "fake_string_provider.h", |
| 10 "fake_sync_service_factory.cc", |
| 11 "fake_sync_service_factory.h", |
| 12 "test_chrome_browser_provider.h", |
| 13 "test_chrome_browser_provider.mm", |
| 14 "test_chrome_provider_initializer.cc", |
| 15 "test_chrome_provider_initializer.h", |
| 16 "test_keyed_service_provider.cc", |
| 17 "test_keyed_service_provider.h", |
| 18 "test_updatable_resource_provider.h", |
| 19 "test_updatable_resource_provider.mm", |
| 20 ] |
| 21 |
| 22 deps = [ |
| 23 "//base", |
| 24 "//components/keyed_service/core", |
| 25 "//components/keyed_service/ios", |
| 26 "//ios/public/provider/chrome/browser", |
| 27 "//sync", |
| 28 "//testing/gtest", |
| 29 ] |
| 30 } |
OLD | NEW |