# 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.
source_set("tabs_public") {
public = [ "tab_features.h" ]
public_deps = [
"//base",
"//ui/base/unowned_user_data",
]
deps = [ "//content/public/browser" ]
}
source_set("tabs_impl") {
sources = [ "tab_features.cc" ]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
":tabs_public",
"//chrome/browser/contextual_search",
"//chrome/browser/sync",
"//chrome/browser/ui/contextual_search",
"//components/external_intents/android",
"//components/favicon/content",
"//components/lens",
"//components/metrics:content",
"//components/tabs:public",
"//content/public/browser",
]
}