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

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

Issue 2896943002: Add "stylus-tools" Wayland protocol. (Closed)
Patch Set: Moved the property out of aura Created 3 years, 7 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 | « components/exo/wayland/server.cc ('k') | 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 234
235 deps = [ 235 deps = [
236 "//third_party/wayland:wayland_util", 236 "//third_party/wayland:wayland_util",
237 ] 237 ]
238 238
239 configs -= [ "//build/config/compiler:chromium_code" ] 239 configs -= [ "//build/config/compiler:chromium_code" ]
240 configs += [ "//build/config/compiler:no_chromium_code" ] 240 configs += [ "//build/config/compiler:no_chromium_code" ]
241 241
242 public_configs = [ ":keyboard_configuration_protocol_config" ] 242 public_configs = [ ":keyboard_configuration_protocol_config" ]
243 } 243 }
244
245 config("stylus_tools_protocol_config") {
246 include_dirs = [ "include/protocol" ]
247 }
248
249 source_set("stylus_tools_protocol") {
250 sources = [
251 "include/protocol/stylus-tools-unstable-v1-client-protocol.h",
252 "include/protocol/stylus-tools-unstable-v1-server-protocol.h",
253 "protocol/stylus-tools-protocol.c",
254 ]
255
256 deps = [
257 "//third_party/wayland:wayland_util",
258 ]
259
260 configs -= [ "//build/config/compiler:chromium_code" ]
261 configs += [ "//build/config/compiler:no_chromium_code" ]
262
263 public_configs = [ ":stylus_tools_protocol_config" ]
264 }
OLDNEW
« no previous file with comments | « components/exo/wayland/server.cc ('k') | third_party/wayland-protocols/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698