Chromium change: https://source.chromium.org/chromium/chromium/src/+/65eee63c0e75ebd343c409a7c14addb00ca4b6dd [Tab Model] Deprecate tab_groups package Merge the tab_groups/ package into tabmodel/. The two packages have significant overlap and should really have a lot of their logic merged anyway. This allows us to package protect TabGroupModelFilterInternal and make destroy method package private as well. Fixed: 372068933
22 lines
812 B
Plaintext
22 lines
812 B
Plaintext
# Copyright (c) 2023 The Brave Authors. All rights reserved.
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
import("//brave/android/features/tab_ui/brave_tab_management_java_sources.gni")
|
|
import("//build/config/android/config.gni")
|
|
import("//build/config/android/rules.gni")
|
|
import("//chrome/browser/buildflags.gni")
|
|
|
|
android_library("java") {
|
|
sources = [ "java/src/org/chromium/chrome/browser/tabmodel/BraveTabGroupModelFilter.java" ]
|
|
|
|
deps = [
|
|
"//base:base_java",
|
|
"//chrome/browser/preferences:java",
|
|
"//chrome/browser/tab:java",
|
|
"//chrome/browser/tabmodel:java",
|
|
"//third_party/androidx:androidx_annotation_annotation_java",
|
|
]
|
|
}
|