| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2017 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_support") { |
| 6 visibility = [ "//components/offline_content/core:unit_tests" ] |
| 7 |
| 8 testonly = true |
| 9 |
| 10 sources = [ |
| 11 "mock_offline_content_provider.cc", |
| 12 "mock_offline_content_provider.h", |
| 13 "scoped_mock_offline_content_provider.cc", |
| 14 "scoped_mock_offline_content_provider.h", |
| 15 ] |
| 16 |
| 17 public_deps = [ |
| 18 "//base", |
| 19 "//components/offline_content/core", |
| 20 "//testing/gmock", |
| 21 "//testing/gtest", |
| 22 ] |
| 23 } |
| OLD | NEW |