blob: 316f14f7944fff8d8788c0ddeb72f808557ea661 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
component("tab_groups") {
sources = [
"tab_group_color.cc",
"tab_group_color.h",
"tab_group_id.cc",
"tab_group_id.h",
"tab_group_visual_data.cc",
"tab_group_visual_data.h",
]
defines = [ "IS_TAB_GROUPS_IMPL" ]
deps = [
"//base",
"//components/strings",
"//skia",
"//ui/base",
"//ui/gfx",
]
}
|