OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("mus") { | 5 source_set("mus") { |
6 sources = [ | 6 sources = [ |
7 "compositor_mus_connection.cc", | 7 "compositor_mus_connection.cc", |
8 "compositor_mus_connection.h", | 8 "compositor_mus_connection.h", |
9 "render_widget_mus_connection.cc", | 9 "render_widget_mus_connection.cc", |
10 "render_widget_mus_connection.h", | 10 "render_widget_mus_connection.h", |
11 "render_widget_window_tree_client_factory.cc", | 11 "render_widget_window_tree_client_factory.cc", |
12 "render_widget_window_tree_client_factory.h", | 12 "render_widget_window_tree_client_factory.h", |
13 ] | 13 ] |
14 | 14 |
15 configs += [ "//content:content_implementation" ] | 15 configs += [ "//content:content_implementation" ] |
16 | 16 |
17 deps = [ | 17 deps = [ |
18 "//base", | 18 "//base", |
19 "//cc", | 19 "//cc", |
20 "//components/mus/public/cpp", | 20 "//components/mus/public/cpp", |
21 "//components/mus/public/interfaces", | 21 "//components/mus/public/interfaces", |
22 "//content/common:mojo_bindings", | 22 "//content/common:mojo_bindings", |
23 "//content/public/common:common_sources", | 23 "//content/public/common:common_sources", |
24 "//mojo/common", | 24 "//mojo/common", |
25 "//mojo/converters/blink", | 25 "//mojo/converters/blink", |
26 "//mojo/converters/geometry", | 26 "//mojo/converters/geometry", |
| 27 "//mojo/converters/input_events", |
27 "//mojo/converters/surfaces", | 28 "//mojo/converters/surfaces", |
28 "//mojo/shell/public/cpp", | 29 "//mojo/shell/public/cpp", |
29 "//third_party/WebKit/public:blink", | 30 "//third_party/WebKit/public:blink", |
| 31 "//ui/events:events", |
30 "//ui/events:events_base", | 32 "//ui/events:events_base", |
31 ] | 33 ] |
32 } | 34 } |
OLD | NEW |