chromium/ios/chrome/browser/shared/ui/bottom_sheet/BUILD.gn

# Copyright 2023 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("bottom_sheet_view_controller") {
  sources = [
    "bottom_sheet_view_controller.h",
    "bottom_sheet_view_controller.mm",
  ]
  deps = [ "//ios/chrome/common/ui/confirmation_alert" ]
}

source_set("table_view_bottom_sheet_view_controller") {
  sources = [
    "table_view_bottom_sheet_view_controller+subclassing.h",
    "table_view_bottom_sheet_view_controller.h",
    "table_view_bottom_sheet_view_controller.mm",
  ]
  deps = [
    ":bottom_sheet_view_controller",
    "//base",
    "//ios/chrome/common/ui/confirmation_alert",
    "//ios/chrome/common/ui/table_view:cells_constants",
  ]
}