blob: ab6e2171b4b10767aa744bff8de793a2d9f6c6e3 [file] [log] [blame]
# 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/chromeos/crosier_tests.gni")
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos)
static_library("assistant") {
sources = [
"assistant_util.cc",
"assistant_util.h",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
"//ash/public/cpp",
"//chrome/browser/ash/profiles",
"//chrome/browser/profiles",
"//chrome/browser/signin",
"//chromeos/ash/components/demo_mode",
"//chromeos/ash/services/assistant/public/cpp",
"//components/language/core/browser",
]
}