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