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

if (!is_android) {
  source_set("tab_group_home") {
    sources = [
      "tab_group_home_ui.cc",
      "tab_group_home_ui.h",
    ]
    public_deps = [
      ":constants",
      "//base",
      "//chrome/browser/ui/webui/top_chrome",
      "//content/public/browser",
    ]
    deps = [
      "//chrome/browser/resources/tab_group_home:resources",
      "//chrome/browser/ui/tabs",
      "//chrome/browser/ui/webui",
      "//ui/webui",
    ]
  }
}

source_set("constants") {
  public = [ "constants.h" ]
  sources = [ "constants.cc" ]
  deps = [ "//base" ]
}
