OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 visibility = [ "//ui/ozone/*" ] | 5 visibility = [ "//ui/ozone/*" ] |
6 | 6 |
7 source_set("wayland") { | 7 source_set("wayland") { |
8 sources = [ | 8 sources = [ |
9 "client_native_pixmap_factory_wayland.cc", | 9 "client_native_pixmap_factory_wayland.cc", |
10 "client_native_pixmap_factory_wayland.h", | 10 "client_native_pixmap_factory_wayland.h", |
11 "ozone_platform_wayland.cc", | 11 "ozone_platform_wayland.cc", |
12 "ozone_platform_wayland.h", | 12 "ozone_platform_wayland.h", |
13 "wayland_display.cc", | 13 "wayland_display.cc", |
14 "wayland_display.h", | 14 "wayland_display.h", |
15 "wayland_object.cc", | 15 "wayland_object.cc", |
16 "wayland_object.h", | 16 "wayland_object.h", |
17 "wayland_surface_factory.cc", | 17 "wayland_surface_factory.cc", |
18 "wayland_surface_factory.h", | 18 "wayland_surface_factory.h", |
19 "wayland_window.cc", | 19 "wayland_window.cc", |
20 "wayland_window.h", | 20 "wayland_window.h", |
21 ] | 21 ] |
22 | 22 |
23 deps = [ | 23 deps = [ |
24 "//base", | 24 "//base", |
25 "//skia", | 25 "//skia", |
26 "//third_party/wayland:wayland_client", | 26 "//third_party/wayland:wayland-client", |
27 "//third_party/wayland-protocols:xdg_shell_protocol", | 27 "//third_party/wayland-protocols:xdg_shell_protocol", |
28 "//ui/events/platform", | 28 "//ui/events/platform", |
29 "//ui/gfx", | 29 "//ui/gfx", |
30 "//ui/gfx/geometry", | 30 "//ui/gfx/geometry", |
31 "//ui/ozone:ozone_base", | 31 "//ui/ozone:ozone_base", |
32 "//ui/ozone/common", | 32 "//ui/ozone/common", |
33 "//ui/platform_window", | 33 "//ui/platform_window", |
34 ] | 34 ] |
35 | 35 |
36 defines = [ "OZONE_IMPLEMENTATION" ] | 36 defines = [ "OZONE_IMPLEMENTATION" ] |
(...skipping 14 matching lines...) Expand all Loading... |
51 deps = [ | 51 deps = [ |
52 ":wayland", | 52 ":wayland", |
53 "//testing/gmock", | 53 "//testing/gmock", |
54 "//testing/gtest", | 54 "//testing/gtest", |
55 "//third_party/wayland:wayland_server", | 55 "//third_party/wayland:wayland_server", |
56 "//third_party/wayland-protocols:xdg_shell_protocol", | 56 "//third_party/wayland-protocols:xdg_shell_protocol", |
57 "//ui/gfx:test_support", | 57 "//ui/gfx:test_support", |
58 "//ui/ozone:platform", | 58 "//ui/ozone:platform", |
59 ] | 59 ] |
60 } | 60 } |
OLD | NEW |