chromium/chrome/browser/ash/data_migration/BUILD.gn

# 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_ash)

static_library("data_migration") {
  sources = [
    "data_migration_factory.cc",
    "data_migration_factory.h",
  ]

  public_deps = [
    "//base",
    "//chrome/browser/profiles:profile",
  ]

  deps = [
    "//chrome/browser/ash/nearby",
    "//chromeos/ash/components/browser_context_helper",
    "//chromeos/ash/components/data_migration",
    "//chromeos/ash/components/data_migration:constants",
    "//chromeos/ash/components/nearby/common/connections_manager",
    "//chromeos/constants",
    "//components/user_manager",
  ]
}