blob: a80c98a6698c2fde834d0e1a8c92951eafad305d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
static_library("identifiers") {
public = [
"identifiers_prefs.h",
"profile_id_delegate.h",
"profile_id_service.h",
]
sources = [
"identifiers_prefs.cc",
"profile_id_service.cc",
]
public_deps = [
"//components/keyed_service/core",
"//third_party/abseil-cpp:absl",
]
deps = [
"//base",
"//components/pref_registry",
"//components/prefs",
]
}
source_set("test_support") {
testonly = true
public = [ "mock_profile_id_delegate.h" ]
sources = [ "mock_profile_id_delegate.cc" ]
public_deps = [
":identifiers",
"//testing/gmock",
]
}
|