OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 assert(use_aura) | 7 assert(use_aura) |
8 | 8 |
9 # GYP version: mojo/mojo.gyp:mojo_views_support | 9 # GYP version: mojo/mojo.gyp:mojo_views_support |
10 static_library("views") { | 10 static_library("views") { |
11 sources = [ | 11 sources = [ |
12 "input_method_mojo_linux.cc", | 12 "input_method_mojo_linux.cc", |
13 "input_method_mojo_linux.h", | 13 "input_method_mojo_linux.h", |
14 "native_widget_view_manager.cc", | 14 "native_widget_view_manager.cc", |
15 "native_widget_view_manager.h", | 15 "native_widget_view_manager.h", |
16 "views_init.cc", | 16 "views_init.cc", |
17 "views_init.h", | 17 "views_init.h", |
18 ] | 18 ] |
19 | 19 |
20 public_deps = [ | 20 public_deps = [ |
21 "//mojo/aura", | 21 "//mojo/aura", |
22 "//mojo/converters/geometry", | 22 "//mojo/converters/geometry", |
23 "//mojo/services/public/cpp/view_manager", | 23 "//mojo/services/view_manager/public/cpp", |
24 "//skia", | 24 "//skia", |
25 "//ui/base", | 25 "//ui/base", |
26 "//ui/views", | 26 "//ui/views", |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 "//base", | 30 "//base", |
31 "//base:i18n", | 31 "//base:i18n", |
32 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
33 "//skia", | 33 "//skia", |
34 "//third_party/icu", | 34 "//third_party/icu", |
35 "//ui/aura", | 35 "//ui/aura", |
36 "//ui/base", | 36 "//ui/base", |
37 "//ui/gfx", | 37 "//ui/gfx", |
38 "//ui/wm", | 38 "//ui/wm", |
39 ] | 39 ] |
40 } | 40 } |
OLD | NEW |