| 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 source_set("wayland") { | 5 source_set("wayland") { |
| 6 sources = [ | 6 sources = [ |
| 7 "client_native_pixmap_factory_wayland.cc", | 7 "client_native_pixmap_factory_wayland.cc", |
| 8 "client_native_pixmap_factory_wayland.h", | 8 "client_native_pixmap_factory_wayland.h", |
| 9 "ozone_platform_wayland.cc", | 9 "ozone_platform_wayland.cc", |
| 10 "ozone_platform_wayland.h", | 10 "ozone_platform_wayland.h", |
| 11 "wayland_display.cc", | 11 "wayland_display.cc", |
| 12 "wayland_display.h", | 12 "wayland_display.h", |
| 13 "wayland_object.cc", | 13 "wayland_object.cc", |
| 14 "wayland_object.h", | 14 "wayland_object.h", |
| 15 "wayland_surface_factory.cc", | 15 "wayland_surface_factory.cc", |
| 16 "wayland_surface_factory.h", | 16 "wayland_surface_factory.h", |
| 17 "wayland_window.cc", | 17 "wayland_window.cc", |
| 18 "wayland_window.h", | 18 "wayland_window.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//skia", | 23 "//skia", |
| 24 "//third_party/wayland:wayland_client", | 24 "//third_party/wayland:wayland_client", |
| 25 "//third_party/wayland-protocols:xdg_shell_protocol", | 25 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 26 "//ui/events/platform", | 26 "//ui/events/platform", |
| 27 "//ui/gfx", |
| 28 "//ui/gfx/geometry", |
| 27 "//ui/ozone:ozone_base", | 29 "//ui/ozone:ozone_base", |
| 30 "//ui/platform_window", |
| 28 ] | 31 ] |
| 29 | 32 |
| 30 defines = [ "OZONE_IMPLEMENTATION" ] | 33 defines = [ "OZONE_IMPLEMENTATION" ] |
| 31 } | 34 } |
| 32 | 35 |
| 33 source_set("wayland_unittests") { | 36 source_set("wayland_unittests") { |
| 34 testonly = true | 37 testonly = true |
| 35 | 38 |
| 36 sources = [ | 39 sources = [ |
| 37 "fake_server.cc", | 40 "fake_server.cc", |
| 38 "fake_server.h", | 41 "fake_server.h", |
| 39 "mock_platform_window_delegate.cc", | 42 "mock_platform_window_delegate.cc", |
| 40 "wayland_display_unittest.cc", | 43 "wayland_display_unittest.cc", |
| 41 "wayland_surface_factory_unittest.cc", | 44 "wayland_surface_factory_unittest.cc", |
| 42 "wayland_window_unittest.cc", | 45 "wayland_window_unittest.cc", |
| 43 ] | 46 ] |
| 44 | 47 |
| 45 deps = [ | 48 deps = [ |
| 46 "//testing/gmock", | 49 "//testing/gmock", |
| 47 "//testing/gtest", | 50 "//testing/gtest", |
| 48 "//third_party/wayland:wayland_server", | 51 "//third_party/wayland:wayland_server", |
| 49 "//third_party/wayland-protocols:xdg_shell_protocol", | 52 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 50 "//ui/gfx:test_support", | 53 "//ui/gfx:test_support", |
| 51 "//ui/ozone", | 54 "//ui/ozone", |
| 52 ] | 55 ] |
| 53 } | 56 } |
| OLD | NEW |