# Copyright 2026 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("undo") {
  public = [ "bookmark_undo_service_factory.h" ]

  public_deps = [ "//chrome/browser/profiles" ]
}

source_set("impl") {
  sources = [ "bookmark_undo_service_factory.cc" ]

  deps = [
    ":undo",
    "//chrome/browser/profiles:profile",
    "//components/undo",
  ]
}
