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

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

Issue 2144283003: wayland-protocols: Add protocol for stylus support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed nits 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 ], 157 ],
158 'include_dirs': [ 158 'include_dirs': [
159 'include/protocol', 159 'include/protocol',
160 ], 160 ],
161 'direct_dependent_settings': { 161 'direct_dependent_settings': {
162 'include_dirs': [ 162 'include_dirs': [
163 'include/protocol', 163 'include/protocol',
164 ], 164 ],
165 }, 165 },
166 }, 166 },
167 {
168 'target_name': 'stylus_protocol',
169 'type': 'static_library',
170 'dependencies' : [
171 '../wayland/wayland.gyp:wayland_util',
172 ],
173 'sources': [
174 'include/protocol/stylus-unstable-v1-client-protocol.h',
175 'include/protocol/stylus-unstable-v1-server-protocol.h',
176 'protocol/stylus-protocol.c',
177 ],
178 'include_dirs': [
179 'include/protocol',
180 ],
181 'direct_dependent_settings': {
182 'include_dirs': [
183 'include/protocol',
184 ],
185 },
186 },
167 ], 187 ],
168 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698