April Zhou | 9379fd7 | 2024-07-25 18:10:15 | [diff] [blame] | 1 | # Copyright 2024 The Chromium Authors |
| 2 | # Use of this source code is governed by a BSD - style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
Georg Neis | d557a9c | 2025-01-28 04:22:13 | [diff] [blame] | 5 | assert(is_chromeos) |
April Zhou | 9379fd7 | 2024-07-25 18:10:15 | [diff] [blame] | 6 | |
| 7 | static_library("boca") { |
| 8 | sources = [ |
| 9 | "chrome_tab_strip_delegate.cc", |
| 10 | "chrome_tab_strip_delegate.h", |
| 11 | ] |
| 12 | |
Eriko Kurimoto | 2210a3a3 | 2024-08-14 01:12:30 | [diff] [blame] | 13 | public_deps = [ "//chrome/browser:browser_public_dependencies" ] |
| 14 | |
April Zhou | 9379fd7 | 2024-07-25 18:10:15 | [diff] [blame] | 15 | deps = [ |
| 16 | "//ash", |
| 17 | "//ash/constants", |
| 18 | "//ash/public/cpp", |
| 19 | "//base", |
| 20 | "//chrome/browser/favicon", |
Maksim Sisov | b37f809 | 2024-10-01 09:13:14 | [diff] [blame] | 21 | "//chrome/browser/ui/tabs", |
| 22 | "//chrome/browser/ui/tabs:tab_strip", |
April Zhou | 9379fd7 | 2024-07-25 18:10:15 | [diff] [blame] | 23 | "//components/app_constants", |
|
|