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 # GYP version: mojo/mojo.gyp:mojo_aura_support | 5 # GYP version: mojo/mojo.gyp:mojo_aura_support |
6 source_set("aura") { | 6 source_set("aura") { |
7 sources = [ | 7 sources = [ |
8 "aura_init.cc", | 8 "aura_init.cc", |
9 "aura_init.h", | 9 "aura_init.h", |
| 10 "input_method_mandoline.cc", |
| 11 "input_method_mandoline.h", |
10 "native_widget_view_manager.cc", | 12 "native_widget_view_manager.cc", |
11 "native_widget_view_manager.h", | 13 "native_widget_view_manager.h", |
12 "screen_mojo.cc", | 14 "screen_mojo.cc", |
13 "screen_mojo.h", | 15 "screen_mojo.h", |
14 "surface_binding.cc", | 16 "surface_binding.cc", |
15 "surface_binding.h", | 17 "surface_binding.h", |
16 "surface_context_factory.cc", | 18 "surface_context_factory.cc", |
17 "surface_context_factory.h", | 19 "surface_context_factory.h", |
18 "window_tree_host_mojo.cc", | 20 "window_tree_host_mojo.cc", |
19 "window_tree_host_mojo.h", | 21 "window_tree_host_mojo.h", |
20 ] | 22 ] |
21 | 23 |
22 if (is_linux) { | |
23 sources += [ | |
24 "input_method_mojo_linux.cc", | |
25 "input_method_mojo_linux.h", | |
26 ] | |
27 } | |
28 | |
29 public_deps = [ | 24 public_deps = [ |
30 "//components/view_manager/public/cpp", | 25 "//components/view_manager/public/cpp", |
31 ] | 26 ] |
32 deps = [ | 27 deps = [ |
33 "//base", | 28 "//base", |
34 "//base:i18n", | 29 "//base:i18n", |
35 "//base/third_party/dynamic_annotations", | 30 "//base/third_party/dynamic_annotations", |
36 "//cc", | 31 "//cc", |
37 "//cc/surfaces", | 32 "//cc/surfaces", |
38 "//components/gpu/public/interfaces", | 33 "//components/gpu/public/interfaces", |
39 "//components/native_viewport/public/interfaces", | 34 "//components/native_viewport/public/interfaces", |
40 "//components/surfaces/public/interfaces", | 35 "//components/surfaces/public/interfaces", |
41 "//components/view_manager/public/cpp", | 36 "//components/view_manager/public/cpp", |
42 "//skia", | 37 "//skia", |
43 "//mojo/cc", | 38 "//mojo/cc", |
44 "//mojo/converters/geometry", | 39 "//mojo/converters/geometry", |
| 40 "//mojo/converters/input_events", |
45 "//mojo/converters/surfaces", | 41 "//mojo/converters/surfaces", |
46 "//third_party/mojo/src/mojo/public/c/gles2", | 42 "//third_party/mojo/src/mojo/public/c/gles2", |
47 "//third_party/mojo/src/mojo/public/cpp/application", | 43 "//third_party/mojo/src/mojo/public/cpp/application", |
48 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 44 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
49 "//third_party/icu", | 45 "//third_party/icu", |
50 "//ui/aura", | 46 "//ui/aura", |
51 "//ui/compositor", | 47 "//ui/compositor", |
52 "//ui/events", | 48 "//ui/events", |
53 "//ui/events:events_base", | 49 "//ui/events:events_base", |
54 "//ui/gl", | 50 "//ui/gl", |
55 "//ui/views", | 51 "//ui/views", |
56 ] | 52 ] |
57 | |
58 data_deps = [ | |
59 "//components/native_viewport", | |
60 "//components/surfaces", | |
61 ] | |
62 } | 53 } |
OLD | NEW |