# 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("upload_office_to_cloud") {
sources = [
"upload_office_to_cloud.cc",
"upload_office_to_cloud.h",
]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
"//base",
"//chrome/browser/profiles:profile",
"//chrome/common:constants",
"//chromeos/constants",
"//components/prefs",
]
}