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

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

Issue 2360533002: exo: Implement minimal support for version 6 of XDG shell. (Closed)
Patch Set: exo: Implement basic support for version 6 of XDG shell. Created 4 years, 2 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 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 = [
11 "include/protocol/xdg-shell-unstable-v5-client-protocol.h", 11 "include/protocol/xdg-shell-unstable-v5-client-protocol.h",
12 "include/protocol/xdg-shell-unstable-v5-server-protocol.h", 12 "include/protocol/xdg-shell-unstable-v5-server-protocol.h",
13 "protocol/xdg-shell-protocol.c", 13 "include/protocol/xdg-shell-unstable-v6-client-protocol.h",
14 "include/protocol/xdg-shell-unstable-v6-server-protocol.h",
15 "protocol/xdg-shell-v5-protocol.c",
16 "protocol/xdg-shell-v6-protocol.c",
14 ] 17 ]
15 18
16 deps = [ 19 deps = [
17 "//third_party/wayland:wayland_util", 20 "//third_party/wayland:wayland_util",
18 ] 21 ]
19 22
20 configs -= [ "//build/config/compiler:chromium_code" ] 23 configs -= [ "//build/config/compiler:chromium_code" ]
21 configs += [ "//build/config/compiler:no_chromium_code" ] 24 configs += [ "//build/config/compiler:no_chromium_code" ]
22 25
23 public_configs = [ ":xdg_shell_protocol_config" ] 26 public_configs = [ ":xdg_shell_protocol_config" ]
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 186
184 deps = [ 187 deps = [
185 "//third_party/wayland:wayland_util", 188 "//third_party/wayland:wayland_util",
186 ] 189 ]
187 190
188 configs -= [ "//build/config/compiler:chromium_code" ] 191 configs -= [ "//build/config/compiler:chromium_code" ]
189 configs += [ "//build/config/compiler:no_chromium_code" ] 192 configs += [ "//build/config/compiler:no_chromium_code" ]
190 193
191 public_configs = [ ":stylus_protocol_config" ] 194 public_configs = [ ":stylus_protocol_config" ]
192 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698