blob: dbded4f2bebebb2a32c0f6316190565a767f5578 [file] [log] [blame]
# Copyright 2024 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("user_annotations") {
sources = [
"user_annotations_features.cc",
"user_annotations_features.h",
"user_annotations_service.cc",
"user_annotations_service.h",
"user_annotations_types.h",
]
public_deps = [
"//base",
"//components/autofill/core/common",
"//components/keyed_service/core",
"//components/optimization_guide/proto:optimization_guide_proto",
]
}
source_set("unit_tests") {
testonly = true
sources = [ "user_annotations_service_unittest.cc" ]
deps = [
":user_annotations",
"//base/test:test_support",
"//testing/gtest",
]
}