mark a. foltz | 0c6ee39 | 2023-08-30 19:45:18 | [diff] [blame] | 1 | # Copyright 2022 The Chromium Authors |
Igor Ruvinov | b1f7bea | 2022-11-08 23:20:50 | [diff] [blame] | 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("features") { |
| 6 | sources = [ "platform_auth_features.cc" ] |
| 7 | |
| 8 | public = [ "platform_auth_features.h" ] |
| 9 | |
| 10 | public_deps = [ "//base" ] |
| 11 | } |
Igor Ruvinov | b4352058 | 2022-12-12 20:56:19 | [diff] [blame] | 12 | |
| 13 | source_set("test_utils") { |
| 14 | testonly = true |
| 15 | sources = [ |
| 16 | "mock_platform_auth_provider.cc", |
| 17 | "scoped_set_provider_for_testing.cc", |
| 18 | ] |
| 19 | |
| 20 | public = [ |
| 21 | "mock_platform_auth_provider.h", |
| 22 | "scoped_set_provider_for_testing.h", |
| 23 | ] |
| 24 | |
| 25 | public_deps = [ |
| 26 | "//chrome/browser", |
Igor Ruvinov | 13e658e | 2022-12-13 03:15:20 | [diff] [blame] | 27 | "//chrome/browser/enterprise/platform_auth:features", |
Igor Ruvinov | b4352058 | 2022-12-12 20:56:19 | [diff] [blame] | 28 | "//net", |
| 29 | "//testing/gmock", |
| 30 | ] |
| 31 | } |