Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: ui/ozone/platform/wayland/wayland.gypi

Issue 1610683003: Add initial SHM-only Wayland Ozone implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698