blob: 85c55f6b1f85b7955f09e417a1efa5ec91a98aeb [file] [log] [blame]
mark a. foltz0c6ee392023-08-30 19:45:181# Copyright 2022 The Chromium Authors
Igor Ruvinovb1f7bea2022-11-08 23:20:502# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5source_set("features") {
6 sources = [ "platform_auth_features.cc" ]
7
8 public = [ "platform_auth_features.h" ]
9
10 public_deps = [ "//base" ]
11}
Igor Ruvinovb43520582022-12-12 20:56:1912
13source_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 Ruvinov13e658e2022-12-13 03:15:2027 "//chrome/browser/enterprise/platform_auth:features",
Igor Ruvinovb43520582022-12-12 20:56:1928 "//net",
29 "//testing/gmock",
30 ]
31}