| 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 static_library("mus") { |
| 6 # Depend on this only via //content/renderer. | 6 # Depend on this only via //content/renderer. |
| 7 visibility = [ "//content/renderer/*" ] | 7 visibility = [ "//content/renderer/*" ] |
| 8 | 8 |
| 9 sources = [ | 9 sources = [ |
| 10 "compositor_mus_connection.cc", | 10 "compositor_mus_connection.cc", |
| 11 "compositor_mus_connection.h", | 11 "compositor_mus_connection.h", |
| 12 "render_widget_mus_connection.cc", | 12 "render_widget_mus_connection.cc", |
| 13 "render_widget_mus_connection.h", | 13 "render_widget_mus_connection.h", |
| 14 "render_widget_window_tree_client_factory.cc", | 14 "render_widget_window_tree_client_factory.cc", |
| 15 "render_widget_window_tree_client_factory.h", | 15 "render_widget_window_tree_client_factory.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 27 "//mojo/converters/blink", | 27 "//mojo/converters/blink", |
| 28 "//services/shell/public/cpp", | 28 "//services/shell/public/cpp", |
| 29 "//services/ui/public/cpp", | 29 "//services/ui/public/cpp", |
| 30 "//services/ui/public/interfaces", | 30 "//services/ui/public/interfaces", |
| 31 "//third_party/WebKit/public:blink", | 31 "//third_party/WebKit/public:blink", |
| 32 "//ui/events:events", | 32 "//ui/events:events", |
| 33 "//ui/events:events_base", | 33 "//ui/events:events_base", |
| 34 "//ui/gfx/geometry/mojo", | 34 "//ui/gfx/geometry/mojo", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| OLD | NEW |