blob: e82971c2c74967c251dd1d84360dfc37725b623b [file] [log] [blame]
Antonio Gomese6f979d2025-05-20 21:34:011# Copyright 2025 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5assert(is_win || is_mac || is_linux || is_chromeos)
6
7source_set("shared_highlighting") {
8 sources = [
9 "shared_highlighting_promo.cc",
10 "shared_highlighting_promo.h",
11 ]
12
13 public_deps = [
14 "//base",
15 "//content/public/browser",
16 "//mojo/public/cpp/bindings",
17 "//third_party/blink/public/common",
18 ]
19
20 deps = [
21 "//chrome/browser/ui/user_education",
22 "//components/feature_engagement/public:feature_constants",
23 "//services/service_manager/public/cpp",
24 ]
25}