| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'internal_ozone_platform_deps': [ | 7 'internal_ozone_platform_deps': [ |
| 8 'ozone_platform_wayland', | 8 'ozone_platform_wayland', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platform_unittest_deps': [ | 10 'internal_ozone_platform_unittest_deps': [ |
| 11 'ozone_platform_wayland_unittests', | 11 'ozone_platform_wayland_unittests', |
| 12 ], | 12 ], |
| 13 'internal_ozone_platforms': [ | 13 'internal_ozone_platforms': [ |
| 14 'wayland' | 14 'wayland' |
| 15 ], | 15 ], |
| 16 }, | 16 }, |
| 17 'targets': [ | 17 'targets': [ |
| 18 { | 18 { |
| 19 'target_name': 'ozone_platform_wayland', | 19 'target_name': 'ozone_platform_wayland', |
| 20 'type': 'static_library', | 20 'type': 'static_library', |
| 21 'defines': [ | 21 'defines': [ |
| 22 'OZONE_IMPLEMENTATION', | 22 'OZONE_IMPLEMENTATION', |
| 23 ], | 23 ], |
| 24 'dependencies': [ | 24 'dependencies': [ |
| 25 'ozone.gyp:ozone_base', | 25 'ozone.gyp:ozone_base', |
| 26 'ozone.gyp:ozone_common', | 26 'ozone.gyp:ozone_common', |
| 27 '../../base/base.gyp:base', | 27 '../../base/base.gyp:base', |
| 28 '../../skia/skia.gyp:skia', | 28 '../../skia/skia.gyp:skia', |
| 29 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro
tocol', | 29 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro
tocol', |
| 30 '../../third_party/wayland/wayland.gyp:wayland_client', | 30 '../../third_party/wayland/wayland.gyp:wayland-client', |
| 31 '../events/platform/events_platform.gyp:events_platform', | 31 '../events/platform/events_platform.gyp:events_platform', |
| 32 ], | 32 ], |
| 33 'sources': [ | 33 'sources': [ |
| 34 'client_native_pixmap_factory_wayland.cc', | 34 'client_native_pixmap_factory_wayland.cc', |
| 35 'client_native_pixmap_factory_wayland.h', | 35 'client_native_pixmap_factory_wayland.h', |
| 36 'ozone_platform_wayland.cc', | 36 'ozone_platform_wayland.cc', |
| 37 'ozone_platform_wayland.h', | 37 'ozone_platform_wayland.h', |
| 38 'wayland_display.cc', | 38 'wayland_display.cc', |
| 39 'wayland_display.h', | 39 'wayland_display.h', |
| 40 'wayland_object.cc', | 40 'wayland_object.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 69 'fake_server.h', | 69 'fake_server.h', |
| 70 'mock_platform_window_delegate.cc', | 70 'mock_platform_window_delegate.cc', |
| 71 'wayland_display_unittest.cc', | 71 'wayland_display_unittest.cc', |
| 72 'wayland_surface_factory_unittest.cc', | 72 'wayland_surface_factory_unittest.cc', |
| 73 'wayland_window_unittest.cc', | 73 'wayland_window_unittest.cc', |
| 74 ], | 74 ], |
| 75 }, | 75 }, |
| 76 }, | 76 }, |
| 77 ], | 77 ], |
| 78 } | 78 } |
| OLD | NEW |