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

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

Issue 2404513002: exo: Implement zcr_linux_explicit_synchronization_v1
Patch Set: 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 = [
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 183
184 deps = [ 184 deps = [
185 "//third_party/wayland:wayland_util", 185 "//third_party/wayland:wayland_util",
186 ] 186 ]
187 187
188 configs -= [ "//build/config/compiler:chromium_code" ] 188 configs -= [ "//build/config/compiler:chromium_code" ]
189 configs += [ "//build/config/compiler:no_chromium_code" ] 189 configs += [ "//build/config/compiler:no_chromium_code" ]
190 190
191 public_configs = [ ":stylus_protocol_config" ] 191 public_configs = [ ":stylus_protocol_config" ]
192 } 192 }
193
194 config("explicit_fencing_protocol_config") {
195 include_dirs = [ "include/protocol" ]
196 }
197
198 source_set("explicit_fencing_protocol") {
199 sources = [
200 "include/protocol/explicit-fencing-unstable-v1-client-protocol.h",
201 "include/protocol/explicit-fencing-unstable-v1-server-protocol.h",
202 "protocol/explicit-fencing-protocol.c",
203 ]
204
205 deps = [
206 "//third_party/wayland:wayland_util",
207 ]
208
209 configs -= [ "//build/config/compiler:chromium_code" ]
210 configs += [ "//build/config/compiler:no_chromium_code" ]
211
212 public_configs = [ ":explicit_fencing_protocol_config" ]
213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698