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

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

Issue 1712103002: ozone/platform/wayland: Implement pointer handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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
« no previous file with comments | « ui/ozone/platform/wayland/fake_server.cc ('k') | ui/ozone/platform/wayland/wayland_display.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': [
(...skipping 10 matching lines...) Expand all
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/events.gyp:events',
31 '../events/platform/events_platform.gyp:events_platform', 32 '../events/platform/events_platform.gyp:events_platform',
32 ], 33 ],
33 'sources': [ 34 'sources': [
34 'client_native_pixmap_factory_wayland.cc', 35 'client_native_pixmap_factory_wayland.cc',
35 'client_native_pixmap_factory_wayland.h', 36 'client_native_pixmap_factory_wayland.h',
36 'ozone_platform_wayland.cc', 37 'ozone_platform_wayland.cc',
37 'ozone_platform_wayland.h', 38 'ozone_platform_wayland.h',
38 'wayland_display.cc', 39 'wayland_display.cc',
39 'wayland_display.h', 40 'wayland_display.h',
40 'wayland_object.cc', 41 'wayland_object.cc',
41 'wayland_object.h', 42 'wayland_object.h',
43 'wayland_pointer.cc',
44 'wayland_pointer.h',
42 'wayland_surface_factory.cc', 45 'wayland_surface_factory.cc',
43 'wayland_surface_factory.h', 46 'wayland_surface_factory.h',
44 'wayland_window.cc', 47 'wayland_window.cc',
45 'wayland_window.h', 48 'wayland_window.h',
46 ], 49 ],
47 }, 50 },
48 { 51 {
49 'target_name': 'ozone_platform_wayland_unittests', 52 'target_name': 'ozone_platform_wayland_unittests',
50 'type': 'none', 53 'type': 'none',
51 'dependencies': [ 54 'dependencies': [
52 'ozone.gyp:ozone_platform', 55 'ozone.gyp:ozone_platform',
53 '../../skia/skia.gyp:skia', 56 '../../skia/skia.gyp:skia',
54 '../../testing/gmock.gyp:gmock', 57 '../../testing/gmock.gyp:gmock',
55 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro tocol', 58 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro tocol',
56 '../../third_party/wayland/wayland.gyp:wayland_server', 59 '../../third_party/wayland/wayland.gyp:wayland_server',
57 '../gfx/gfx.gyp:gfx_test_support', 60 '../gfx/gfx.gyp:gfx_test_support',
58 ], 61 ],
59 'export_dependent_settings': [ 62 'export_dependent_settings': [
60 '../../skia/skia.gyp:skia', 63 '../../skia/skia.gyp:skia',
61 '../../testing/gmock.gyp:gmock', 64 '../../testing/gmock.gyp:gmock',
62 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro tocol', 65 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro tocol',
63 '../../third_party/wayland/wayland.gyp:wayland_server', 66 '../../third_party/wayland/wayland.gyp:wayland_server',
64 '../gfx/gfx.gyp:gfx_test_support', 67 '../gfx/gfx.gyp:gfx_test_support',
65 ], 68 ],
66 'direct_dependent_settings': { 69 'direct_dependent_settings': {
70 'defines': [
71 'WL_HIDE_DEPRECATED',
72 ],
67 'sources': [ 73 'sources': [
68 'fake_server.cc', 74 'fake_server.cc',
69 'fake_server.h', 75 'fake_server.h',
70 'mock_platform_window_delegate.cc', 76 'mock_platform_window_delegate.cc',
71 'wayland_display_unittest.cc', 77 'wayland_display_unittest.cc',
78 'wayland_pointer_unittest.cc',
72 'wayland_surface_factory_unittest.cc', 79 'wayland_surface_factory_unittest.cc',
73 'wayland_test.cc', 80 'wayland_test.cc',
74 'wayland_test.h', 81 'wayland_test.h',
75 'wayland_window_unittest.cc', 82 'wayland_window_unittest.cc',
76 ], 83 ],
77 }, 84 },
78 }, 85 },
79 ], 86 ],
80 } 87 }
OLDNEW
« no previous file with comments | « ui/ozone/platform/wayland/fake_server.cc ('k') | ui/ozone/platform/wayland/wayland_display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698