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", | 10 "input_method_mandoline.cc", |
11 "input_method_mandoline.h", | 11 "input_method_mandoline.h", |
12 "native_widget_view_manager.cc", | 12 "native_widget_view_manager.cc", |
13 "native_widget_view_manager.h", | 13 "native_widget_view_manager.h", |
14 "surface_binding.cc", | 14 "surface_binding.cc", |
15 "surface_binding.h", | 15 "surface_binding.h", |
16 "surface_context_factory.cc", | 16 "surface_context_factory.cc", |
17 "surface_context_factory.h", | 17 "surface_context_factory.h", |
18 "window_tree_host_mojo.cc", | 18 "window_tree_host_mojo.cc", |
19 "window_tree_host_mojo.h", | 19 "window_tree_host_mojo.h", |
20 ] | 20 ] |
21 | 21 |
22 public_deps = [ | 22 public_deps = [ |
23 "//components/view_manager/public/cpp", | 23 "//components/mus/public/cpp", |
24 ] | 24 ] |
25 deps = [ | 25 deps = [ |
26 "//base", | 26 "//base", |
27 "//base:i18n", | 27 "//base:i18n", |
28 "//base/third_party/dynamic_annotations", | 28 "//base/third_party/dynamic_annotations", |
29 "//cc", | 29 "//cc", |
30 "//cc/surfaces", | 30 "//cc/surfaces", |
| 31 "//components/mus/gles2:lib", |
| 32 "//components/mus/public/cpp", |
| 33 "//components/mus/public/interfaces", |
31 "//components/resource_provider/public/cpp", | 34 "//components/resource_provider/public/cpp", |
32 "//components/resource_provider/public/interfaces", | 35 "//components/resource_provider/public/interfaces", |
33 "//components/view_manager/gles2:lib", | |
34 "//components/view_manager/public/cpp", | |
35 "//components/view_manager/public/interfaces", | |
36 "//skia", | 36 "//skia", |
37 "//mojo/application/public/cpp", | 37 "//mojo/application/public/cpp", |
38 "//mojo/application/public/interfaces", | 38 "//mojo/application/public/interfaces", |
39 "//mojo/cc", | 39 "//mojo/cc", |
40 "//mojo/converters/geometry", | 40 "//mojo/converters/geometry", |
41 "//mojo/converters/ime", | 41 "//mojo/converters/ime", |
42 "//mojo/converters/input_events", | 42 "//mojo/converters/input_events", |
43 "//mojo/converters/surfaces", | 43 "//mojo/converters/surfaces", |
44 "//third_party/mojo/src/mojo/public/c/gles2", | 44 "//third_party/mojo/src/mojo/public/c/gles2", |
45 "//third_party/icu", | 45 "//third_party/icu", |
46 "//ui/aura", | 46 "//ui/aura", |
47 "//ui/compositor", | 47 "//ui/compositor", |
48 "//ui/events", | 48 "//ui/events", |
49 "//ui/events:events_base", | 49 "//ui/events:events_base", |
50 "//ui/gl", | 50 "//ui/gl", |
51 "//ui/mojo/ime:interfaces_cpp_sources", | 51 "//ui/mojo/ime:interfaces_cpp_sources", |
52 "//ui/mojo/init", | 52 "//ui/mojo/init", |
53 "//ui/views", | 53 "//ui/views", |
54 "//ui/wm", | 54 "//ui/wm", |
55 ] | 55 ] |
56 | 56 |
57 if (is_linux && !is_android) { | 57 if (is_linux && !is_android) { |
58 deps += [ "//components/font_service/public/cpp" ] | 58 deps += [ "//components/font_service/public/cpp" ] |
59 } | 59 } |
60 } | 60 } |
OLD | NEW |