| 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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 source_set("wayland_unittests") { | 39 source_set("wayland_unittests") { |
| 40 testonly = true | 40 testonly = true |
| 41 | 41 |
| 42 sources = [ | 42 sources = [ |
| 43 "fake_server.cc", | 43 "fake_server.cc", |
| 44 "fake_server.h", | 44 "fake_server.h", |
| 45 "mock_platform_window_delegate.cc", | 45 "mock_platform_window_delegate.cc", |
| 46 "wayland_display_unittest.cc", | 46 "wayland_display_unittest.cc", |
| 47 "wayland_surface_factory_unittest.cc", | 47 "wayland_surface_factory_unittest.cc", |
| 48 "wayland_test.cc", |
| 49 "wayland_test.h", |
| 48 "wayland_window_unittest.cc", | 50 "wayland_window_unittest.cc", |
| 49 ] | 51 ] |
| 50 | 52 |
| 51 deps = [ | 53 deps = [ |
| 52 ":wayland", | 54 ":wayland", |
| 53 "//testing/gmock", | 55 "//testing/gmock", |
| 54 "//testing/gtest", | 56 "//testing/gtest", |
| 55 "//third_party/wayland:wayland_server", | 57 "//third_party/wayland:wayland_server", |
| 56 "//third_party/wayland-protocols:xdg_shell_protocol", | 58 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 57 "//ui/gfx:test_support", | 59 "//ui/gfx:test_support", |
| 58 "//ui/ozone:platform", | 60 "//ui/ozone:platform", |
| 59 ] | 61 ] |
| 60 } | 62 } |
| OLD | NEW |