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

Side by Side Diff: third_party/wayland-protocols/BUILD.gn

Issue 2144283003: wayland-protocols: Add protocol for stylus support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git checkout stylus Created 4 years, 4 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 | third_party/wayland-protocols/README.chromium » ('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 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 config("xdg_shell_protocol_config") { 5 config("xdg_shell_protocol_config") {
6 include_dirs = [ "include/protocol" ] 6 include_dirs = [ "include/protocol" ]
7 } 7 }
8 8
9 source_set("xdg_shell_protocol") { 9 source_set("xdg_shell_protocol") {
10 sources = [ 10 sources = [
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 162
163 deps = [ 163 deps = [
164 "//third_party/wayland:wayland_util", 164 "//third_party/wayland:wayland_util",
165 ] 165 ]
166 166
167 configs -= [ "//build/config/compiler:chromium_code" ] 167 configs -= [ "//build/config/compiler:chromium_code" ]
168 configs += [ "//build/config/compiler:no_chromium_code" ] 168 configs += [ "//build/config/compiler:no_chromium_code" ]
169 169
170 public_configs = [ ":gaming_input_protocol_config" ] 170 public_configs = [ ":gaming_input_protocol_config" ]
171 } 171 }
172
173 config("stylus_protocol_config") {
174 include_dirs = [ "include/protocol" ]
175 }
176
177 source_set("stylus_protocol") {
178 sources = [
179 "include/protocol/stylus-unstable-v1-client-protocol.h",
180 "include/protocol/stylus-unstable-v1-server-protocol.h",
181 "protocol/stylus-protocol.c",
182 ]
183
184 deps = [
185 "//third_party/wayland:wayland_util",
186 ]
187
188 configs -= [ "//build/config/compiler:chromium_code" ]
189 configs += [ "//build/config/compiler:no_chromium_code" ]
190
191 public_configs = [ ":stylus_protocol_config" ]
192 }
OLDNEW
« no previous file with comments | « no previous file | third_party/wayland-protocols/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698