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

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: minor adjustments to protocol 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/gamepads.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 # todo(denniskempin): add gyp dependency to /device/gamepad once it exis ts.
reveman 2016/06/27 17:30:34 nit: not sure this is needed as it's pretty obviou
denniskempin 2016/06/29 17:12:25 done. I was just waiting for a gyp build file to b
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/gamepads.cc',
40 'exo/gamepads.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/pointer.cc', 44 'exo/pointer.cc',
42 'exo/pointer.h', 45 'exo/pointer.h',
43 'exo/pointer_delegate.h', 46 'exo/pointer_delegate.h',
44 'exo/shared_memory.cc', 47 'exo/shared_memory.cc',
45 'exo/shared_memory.h', 48 'exo/shared_memory.h',
46 'exo/shell_surface.cc', 49 'exo/shell_surface.cc',
47 'exo/shell_surface.h', 50 'exo/shell_surface.h',
(...skipping 18 matching lines...) Expand all
66 'target_name': 'exo_wayland', 69 'target_name': 'exo_wayland',
67 'type': 'static_library', 70 'type': 'static_library',
68 'include_dirs': [ 71 'include_dirs': [
69 '..', 72 '..',
70 ], 73 ],
71 'dependencies': [ 74 'dependencies': [
72 '../base/base.gyp:base', 75 '../base/base.gyp:base',
73 '../ipc/ipc.gyp:ipc', 76 '../ipc/ipc.gyp:ipc',
74 '../skia/skia.gyp:skia', 77 '../skia/skia.gyp:skia',
75 '../third_party/wayland-protocols/wayland-protocols.gyp:alpha_compos iting_protocol', 78 '../third_party/wayland-protocols/wayland-protocols.gyp:alpha_compos iting_protocol',
79 '../third_party/wayland-protocols/wayland-protocols.gyp:gamepads_pro tocol',
76 '../third_party/wayland-protocols/wayland-protocols.gyp:remote_shell _protocol', 80 '../third_party/wayland-protocols/wayland-protocols.gyp:remote_shell _protocol',
77 '../third_party/wayland-protocols/wayland-protocols.gyp:secure_outpu t_protocol', 81 '../third_party/wayland-protocols/wayland-protocols.gyp:secure_outpu t_protocol',
78 '../third_party/wayland-protocols/wayland-protocols.gyp:viewporter_p rotocol', 82 '../third_party/wayland-protocols/wayland-protocols.gyp:viewporter_p rotocol',
79 '../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pr otocol', 83 '../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pr otocol',
80 '../third_party/wayland-protocols/wayland-protocols.gyp:vsync_feedba ck_protocol', 84 '../third_party/wayland-protocols/wayland-protocols.gyp:vsync_feedba ck_protocol',
81 '../third_party/wayland/wayland.gyp:wayland_server', 85 '../third_party/wayland/wayland.gyp:wayland_server',
82 '../ui/aura/aura.gyp:aura', 86 '../ui/aura/aura.gyp:aura',
83 '../ui/events/events.gyp:dom_keycode_converter', 87 '../ui/events/events.gyp:dom_keycode_converter',
84 '../ui/display/display.gyp:display', 88 '../ui/display/display.gyp:display',
85 '../ui/events/events.gyp:events_base', 89 '../ui/events/events.gyp:events_base',
(...skipping 22 matching lines...) Expand all
108 'defines': [ 112 'defines': [
109 'USE_XKBCOMMON', 113 'USE_XKBCOMMON',
110 ], 114 ],
111 }], 115 }],
112 ], 116 ],
113 }, 117 },
114 ], 118 ],
115 }], 119 }],
116 ], 120 ],
117 } 121 }
OLDNEW
« no previous file with comments | « no previous file | components/exo/BUILD.gn » ('j') | components/exo/gamepads.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698