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