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 # Depend on this only via //content/renderer. |
| 7 visibility = [ "//content/renderer/*" ] |
| 8 |
6 sources = [ | 9 sources = [ |
7 "compositor_mus_connection.cc", | 10 "compositor_mus_connection.cc", |
8 "compositor_mus_connection.h", | 11 "compositor_mus_connection.h", |
9 "render_widget_mus_connection.cc", | 12 "render_widget_mus_connection.cc", |
10 "render_widget_mus_connection.h", | 13 "render_widget_mus_connection.h", |
11 "render_widget_window_tree_client_factory.cc", | 14 "render_widget_window_tree_client_factory.cc", |
12 "render_widget_window_tree_client_factory.h", | 15 "render_widget_window_tree_client_factory.h", |
13 ] | 16 ] |
14 | 17 |
15 configs += [ "//content:content_implementation" ] | 18 configs += [ "//content:content_implementation" ] |
16 | 19 |
17 deps = [ | 20 deps = [ |
18 "//base", | 21 "//base", |
19 "//cc", | 22 "//cc", |
20 "//components/mus/public/cpp", | 23 "//components/mus/public/cpp", |
21 "//components/mus/public/interfaces", | 24 "//components/mus/public/interfaces", |
22 "//content/common:mojo_bindings", | 25 "//content/common", |
23 "//content/public/common:common_sources", | 26 "//content/public/common:common_sources", |
24 "//mojo/common", | 27 "//mojo/common", |
25 "//mojo/converters/blink", | 28 "//mojo/converters/blink", |
26 "//mojo/converters/geometry", | 29 "//mojo/converters/geometry", |
27 "//mojo/converters/input_events", | 30 "//mojo/converters/input_events", |
28 "//mojo/converters/surfaces", | 31 "//mojo/converters/surfaces", |
29 "//mojo/shell/public/cpp", | 32 "//mojo/shell/public/cpp", |
30 "//third_party/WebKit/public:blink", | 33 "//third_party/WebKit/public:blink", |
31 "//ui/events:events", | 34 "//ui/events:events", |
32 "//ui/events:events_base", | 35 "//ui/events:events_base", |
33 ] | 36 ] |
34 } | 37 } |
OLD | NEW |