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

Side by Side Diff: third_party/wayland-protocols/wayland-protocols.gyp

Issue 2093803002: wayland-protocols: Add gaming-input-unstable-v1 protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@migration
Patch Set: fixed wording to allow for multiple gamepads reported as one 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
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 'target_name': 'xdg_shell_protocol', 8 'target_name': 'xdg_shell_protocol',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies' : [ 10 'dependencies' : [
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 ], 137 ],
138 'include_dirs': [ 138 'include_dirs': [
139 'include/protocol', 139 'include/protocol',
140 ], 140 ],
141 'direct_dependent_settings': { 141 'direct_dependent_settings': {
142 'include_dirs': [ 142 'include_dirs': [
143 'include/protocol', 143 'include/protocol',
144 ], 144 ],
145 }, 145 },
146 }, 146 },
147 {
148 'target_name': 'gaming_input_protocol',
149 'type': 'static_library',
150 'dependencies' : [
151 '../wayland/wayland.gyp:wayland_util',
152 ],
153 'sources': [
154 'include/protocol/gaming-input-unstable-v1-client-protocol.h',
155 'include/protocol/gaming-input-unstable-v1-server-protocol.h',
156 'protocol/gaming-input-protocol.c',
157 ],
158 'include_dirs': [
159 'include/protocol',
160 ],
161 'direct_dependent_settings': {
162 'include_dirs': [
163 'include/protocol',
164 ],
165 },
166 },
147 ], 167 ],
148 } 168 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698