| 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. | 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", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "//components/mus/public/cpp/surfaces", | 24 "//components/mus/public/cpp/surfaces", |
| 25 "//components/mus/public/interfaces", | 25 "//components/mus/public/interfaces", |
| 26 "//content/common", | 26 "//content/common", |
| 27 "//content/public/common:common_sources", | 27 "//content/public/common:common_sources", |
| 28 "//mojo/common", | 28 "//mojo/common", |
| 29 "//mojo/converters/blink", | 29 "//mojo/converters/blink", |
| 30 "//services/shell/public/cpp", | 30 "//services/shell/public/cpp", |
| 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/events/mojo", | |
| 35 "//ui/gfx/geometry/mojo", | 34 "//ui/gfx/geometry/mojo", |
| 36 ] | 35 ] |
| 37 } | 36 } |
| OLD | NEW |