This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
ozone_impl.gyp
50 lines (49 loc) · 1.64 KB
/
ozone_impl.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2013 The Chromium Authors. All rights reserved.
# Copyright 2013 Intel Corporation. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
'ui/ui.gypi',
],
'targets': [
{
'target_name': 'wayland',
'type': 'static_library',
'dependencies': [
'<(DEPTH)/skia/skia.gyp:skia',
'<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone_evdev',
'<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
'wayland/wayland.gyp:wayland_toolkit'
],
'include_dirs': [
'..',
],
'defines': [
'OZONE_WAYLAND_IMPLEMENTATION',
],
'sources': [
'media/media_ozone_platform_wayland.cc',
'media/media_ozone_platform_wayland.h',
'platform/client_native_pixmap_factory_wayland.cc',
'platform/client_native_pixmap_factory_wayland.h',
'platform/desktop_platform_screen.h',
'platform/desktop_platform_screen_delegate.h',
'platform/ozone_export_wayland.h',
'platform/messages.h',
'platform/message_generator.h',
'platform/message_generator.cc',
'platform/ozone_gpu_platform_support_host.h',
'platform/ozone_gpu_platform_support_host.cc',
'platform/ozone_platform_wayland.cc',
'platform/ozone_platform_wayland.h',
'platform/ozone_wayland_window.cc',
'platform/ozone_wayland_window.h',
'platform/window_constants.h',
'platform/window_manager_wayland.cc',
'platform/window_manager_wayland.h',
],
},
]
}