1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 2014 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.
import("//build/config/ui.gni")
assert(toolkit_views)
component("views") {
output_name = "browser_ui_views"
sources = [
"accelerator_table.cc",
"accelerator_table.h",
"chrome_views_export.h",
"event_utils.cc",
"event_utils.h",
"tab_icon_view_model.h",
"tabs/tab_renderer_data.cc",
"tabs/tab_renderer_data.h",
"tabs/tab_strip_observer.cc",
"tabs/tab_strip_observer.h",
"tabs/tab_strip_types.h",
]
defines = [ "CHROME_VIEWS_IMPLEMENTATION" ]
deps = [
"//base",
"//chrome/app:command_ids",
"//content/public/browser",
"//printing/features",
"//skia",
"//ui/base",
"//ui/events",
"//ui/gfx",
"//ui/gfx/geometry",
"//ui/vector_icons",
"//url",
]
if (use_ash) {
deps += [ "//ash" ]
}
}
|