Files
Terry Mancey 99ed05b5b8 [ads] Convert bool to enum and rename related variables (#31787)
Replace P3A boolean flag with an enum (Confirmation/P3A)
for clarity and rename related variables to match.
2025-10-14 11:41:06 -05:00

28 lines
865 B
Plaintext

# Copyright (c) 2024 The Brave Authors. All rights reserved.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at https://mozilla.org/MPL/2.0/.
assert(is_android)
source_set("android") {
sources = [
"ntp_background_images_bridge.cc",
"ntp_background_images_bridge.h",
]
deps = [
"//base",
"//brave/browser:browser_process",
"//brave/browser/ntp_background",
"//brave/build/android:jni_headers",
"//brave/components/brave_ads/core/mojom",
"//brave/components/brave_referrals/browser",
"//brave/components/brave_stats/browser",
"//brave/components/ntp_background_images/browser",
"//chrome/browser/profiles:profile",
"//components/keyed_service/content",
"//content/public/browser",
]
}