| # Copyright 2023 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/chromeos/ui_mode.gni") |
| |
| assert(is_chromeos_ash) |
| |
| component("scalable_iph_factory") { |
| sources = [ |
| "scalable_iph_factory.cc", |
| "scalable_iph_factory.h", |
| ] |
| |
| defines = [ "IS_SCALABLE_IPH_FACTORY_IMPL" ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser/profiles:profile", |
| "//chromeos/ash/components/browser_context_helper:browser_context_helper", |
| "//chromeos/ash/components/scalable_iph", |
| "//components/keyed_service/content:content", |
| "//content/public/browser:browser", |
| ] |
| } |