OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'internal_ozone_platform_deps': [ |
| 8 'ozone_platform_wayland', |
| 9 ], |
| 10 'internal_ozone_platforms': [ |
| 11 'wayland' |
| 12 ], |
| 13 }, |
| 14 'targets': [ |
| 15 { |
| 16 'target_name': 'ozone_platform_wayland', |
| 17 'type': 'static_library', |
| 18 'defines': [ |
| 19 'OZONE_IMPLEMENTATION', |
| 20 ], |
| 21 'dependencies': [ |
| 22 '../../base/base.gyp:base', |
| 23 '../../skia/skia.gyp:skia', |
| 24 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro
tocol', |
| 25 '../../third_party/wayland/wayland.gyp:wayland_client', |
| 26 '../events/platform/events_platform.gyp:events_platform', |
| 27 ], |
| 28 'sources': [ |
| 29 "client_native_pixmap_factory_wayland.cc", |
| 30 "client_native_pixmap_factory_wayland.h", |
| 31 "ozone_platform_wayland.cc", |
| 32 "ozone_platform_wayland.h", |
| 33 "wayland_display.cc", |
| 34 "wayland_display.h", |
| 35 "wayland_object.h", |
| 36 "wayland_surface_factory.cc", |
| 37 "wayland_surface_factory.h", |
| 38 "wayland_window.cc", |
| 39 "wayland_window.h", |
| 40 ], |
| 41 }, |
| 42 ], |
| 43 } |
OLD | NEW |