BUILD.gn revision 116680a4aac90f2aa7413d9095a592090648e557
1# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/ui.gni")
6
7assert(!is_android)
8
9component("views") {
10  output_name = "browser_ui_views"
11  sources = [
12    "accelerator_table.cc",
13    "accelerator_table.h",
14    "browser_dialogs.h",
15    "chrome_views_export.h",
16    "event_utils.cc",
17    "event_utils.h",
18    "tab_icon_view_model.h",
19    "tabs/tab_renderer_data.cc",
20    "tabs/tab_renderer_data.h",
21    "tabs/tab_strip_observer.cc",
22    "tabs/tab_strip_observer.h",
23    "tabs/tab_strip_types.h",
24  ]
25
26  defines = [ "CHROME_VIEWS_IMPLEMENTATION" ]
27
28  deps = [
29    "//base",
30    "//skia",
31    "//ui/base",
32    "//ui/events",
33    "//ui/gfx",
34    "//ui/gfx/geometry",
35    "//url",
36  ]
37
38  if (use_ash) {
39    #deps += [ "//ash" ]  TODO(GYP)
40  }
41}
42