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

Side by Side Diff: components/exo.gypi

Issue 2076013002: exo: Implement wayland gamepad support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serv
Patch Set: removed id from Gamepad and updated wording Created 4 years, 5 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 | « no previous file | components/exo/BUILD.gn » ('j') | components/exo/gamepad.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/exo 8 # GN version: //components/exo
9 'target_name': 'exo', 9 'target_name': 'exo',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../ash/ash.gyp:ash', 15 '../ash/ash.gyp:ash',
16 '../base/base.gyp:base', 16 '../base/base.gyp:base',
17 '../cc/cc.gyp:cc', 17 '../cc/cc.gyp:cc',
18 '../cc/cc.gyp:cc_surfaces', 18 '../cc/cc.gyp:cc_surfaces',
19 '../device/gamepad/gamepad.gyp:device_gamepad',
19 '../gpu/gpu.gyp:gpu', 20 '../gpu/gpu.gyp:gpu',
20 '../skia/skia.gyp:skia', 21 '../skia/skia.gyp:skia',
21 '../ui/aura/aura.gyp:aura', 22 '../ui/aura/aura.gyp:aura',
22 '../ui/compositor/compositor.gyp:compositor', 23 '../ui/compositor/compositor.gyp:compositor',
23 '../ui/gfx/gfx.gyp:gfx', 24 '../ui/gfx/gfx.gyp:gfx',
24 '../ui/gfx/gfx.gyp:gfx_geometry', 25 '../ui/gfx/gfx.gyp:gfx_geometry',
25 '../ui/gl/gl.gyp:gl', 26 '../ui/gl/gl.gyp:gl',
26 '../ui/views/views.gyp:views', 27 '../ui/views/views.gyp:views',
27 '../ui/wm/wm.gyp:wm', 28 '../ui/wm/wm.gyp:wm',
28 ], 29 ],
29 'export_dependent_settings': [ 30 'export_dependent_settings': [
30 '../ui/views/views.gyp:views', 31 '../ui/views/views.gyp:views',
31 ], 32 ],
32 'sources': [ 33 'sources': [
33 # Note: sources list duplicated in GN build. 34 # Note: sources list duplicated in GN build.
34 'exo/buffer.cc', 35 'exo/buffer.cc',
35 'exo/buffer.h', 36 'exo/buffer.h',
36 'exo/display.cc', 37 'exo/display.cc',
37 'exo/display.h', 38 'exo/display.h',
39 'exo/gamepad.cc',
40 'exo/gamepad.h',
38 'exo/keyboard.cc', 41 'exo/keyboard.cc',
39 'exo/keyboard.h', 42 'exo/keyboard.h',
40 'exo/keyboard_delegate.h', 43 'exo/keyboard_delegate.h',
41 'exo/notification_surface.cc', 44 'exo/notification_surface.cc',
42 'exo/notification_surface.h', 45 'exo/notification_surface.h',
43 'exo/notification_surface_manager.h', 46 'exo/notification_surface_manager.h',
44 'exo/pointer.cc', 47 'exo/pointer.cc',
45 'exo/pointer.h', 48 'exo/pointer.h',
46 'exo/pointer_delegate.h', 49 'exo/pointer_delegate.h',
47 'exo/shared_memory.cc', 50 'exo/shared_memory.cc',
(...skipping 21 matching lines...) Expand all
69 'target_name': 'exo_wayland', 72 'target_name': 'exo_wayland',
70 'type': 'static_library', 73 'type': 'static_library',
71 'include_dirs': [ 74 'include_dirs': [
72 '..', 75 '..',
73 ], 76 ],
74 'dependencies': [ 77 'dependencies': [
75 '../base/base.gyp:base', 78 '../base/base.gyp:base',
76 '../ipc/ipc.gyp:ipc', 79 '../ipc/ipc.gyp:ipc',
77 '../skia/skia.gyp:skia', 80 '../skia/skia.gyp:skia',
78 '../third_party/wayland-protocols/wayland-protocols.gyp:alpha_compos iting_protocol', 81 '../third_party/wayland-protocols/wayland-protocols.gyp:alpha_compos iting_protocol',
82 '../third_party/wayland-protocols/wayland-protocols.gyp:gaming_input _protocol',
79 '../third_party/wayland-protocols/wayland-protocols.gyp:remote_shell _protocol', 83 '../third_party/wayland-protocols/wayland-protocols.gyp:remote_shell _protocol',
80 '../third_party/wayland-protocols/wayland-protocols.gyp:secure_outpu t_protocol', 84 '../third_party/wayland-protocols/wayland-protocols.gyp:secure_outpu t_protocol',
81 '../third_party/wayland-protocols/wayland-protocols.gyp:viewporter_p rotocol', 85 '../third_party/wayland-protocols/wayland-protocols.gyp:viewporter_p rotocol',
82 '../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pr otocol', 86 '../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pr otocol',
83 '../third_party/wayland-protocols/wayland-protocols.gyp:vsync_feedba ck_protocol', 87 '../third_party/wayland-protocols/wayland-protocols.gyp:vsync_feedba ck_protocol',
84 '../third_party/wayland/wayland.gyp:wayland_server', 88 '../third_party/wayland/wayland.gyp:wayland_server',
85 '../ui/aura/aura.gyp:aura', 89 '../ui/aura/aura.gyp:aura',
86 '../ui/events/events.gyp:dom_keycode_converter', 90 '../ui/events/events.gyp:dom_keycode_converter',
87 '../ui/display/display.gyp:display', 91 '../ui/display/display.gyp:display',
88 '../ui/events/events.gyp:events_base', 92 '../ui/events/events.gyp:events_base',
(...skipping 22 matching lines...) Expand all
111 'defines': [ 115 'defines': [
112 'USE_XKBCOMMON', 116 'USE_XKBCOMMON',
113 ], 117 ],
114 }], 118 }],
115 ], 119 ],
116 }, 120 },
117 ], 121 ],
118 }], 122 }],
119 ], 123 ],
120 } 124 }
OLDNEW
« no previous file with comments | « no previous file | components/exo/BUILD.gn » ('j') | components/exo/gamepad.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698