| # 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. |
| |
| source_set("tips_manager") { |
| sources = [ |
| "tips_manager_ios.h", |
| "tips_manager_ios.mm", |
| ] |
| public_deps = [ "//components/segmentation_platform/embedder/home_modules/tips_manager:public" ] |
| deps = [ "//components/segmentation_platform/embedder/home_modules/tips_manager:constants" ] |
| } |
| |
| source_set("factory") { |
| sources = [ |
| "tips_manager_ios_factory.h", |
| "tips_manager_ios_factory.mm", |
| ] |
| public_deps = [ |
| "//base", |
| "//ios/chrome/browser/shared/model/profile:profile_keyed_service_factory", |
| ] |
| deps = [ |
| ":tips_manager", |
| "//components/pref_registry", |
| "//components/segmentation_platform/embedder/home_modules/tips_manager:public", |
| "//ios/chrome/browser/shared/model/application_context", |
| "//ios/chrome/browser/shared/model/profile", |
| "//ios/chrome/browser/shared/public/features", |
| ] |
| } |