| # 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. |
| |
| import("//build/config/chromeos/ui_mode.gni") |
| |
| assert(is_chromeos) |
| |
| static_library("metrics") { |
| sources = [ |
| "arc_metrics_service_proxy.cc", |
| "arc_metrics_service_proxy.h", |
| ] |
| |
| public_deps = [ "//chrome/browser:browser_public_dependencies" ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser:browser_process", |
| "//chrome/browser/ash/app_list/arc", |
| "//chrome/browser/ash/arc:arc_util", |
| "//chromeos/ash/experiences/arc", |
| "//components/keyed_service/core", |
| ] |
| } |