blob: 191d0fef76dcfe464d030f0048d2024ac51a8d77 [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/config/chromeos/ui_mode.gni")
assert(is_chromeos)
static_library("scanner") {
sources = [
"chrome_scanner_delegate.cc",
"chrome_scanner_delegate.h",
"scanner_keyed_service.cc",
"scanner_keyed_service.h",
"scanner_keyed_service_factory.cc",
"scanner_keyed_service_factory.h",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
"//ash",
"//ash/public/cpp",
"//base",
"//chrome/browser:browser_process",
"//chrome/browser/profiles:profile",
"//chrome/browser/signin",
"//chrome/browser/ui/webui/ash/scanner_feedback_dialog",
"//chromeos/ash/components/browser_context_helper",
"//chromeos/ash/components/specialized_features",
"//components/drive",
"//components/keyed_service/core",
"//content/public/browser",
"//google_apis/drive",
]
}