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: components/exo/wayland/BUILD.gn

Issue 2497173002: exo: Add explicit synchronization support to motion event client.
Patch Set: refactor Created 4 years, 1 month 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 | components/exo/wayland/clients/motion_events.cc » ('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 import("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//ui/ozone/ozone.gni") 7 import("//ui/ozone/ozone.gni")
8 8
9 if (use_xkbcommon) { 9 if (use_xkbcommon) {
10 pkg_config("xkbcommon") { 10 pkg_config("xkbcommon") {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 executable("wayland_motion_events") { 86 executable("wayland_motion_events") {
87 sources = [ 87 sources = [
88 "clients/motion_events.cc", 88 "clients/motion_events.cc",
89 ] 89 ]
90 90
91 deps = [ 91 deps = [
92 "//base", 92 "//base",
93 "//skia", 93 "//skia",
94 "//third_party/wayland:wayland_client", 94 "//third_party/wayland:wayland_client",
95 "//third_party/wayland-protocols:linux_dmabuf_protocol", 95 "//third_party/wayland-protocols:linux_dmabuf_protocol",
96 "//third_party/wayland-protocols:linux_explicit_synchronization_protocol",
96 "//ui/gfx/geometry", 97 "//ui/gfx/geometry",
97 "//ui/gl", 98 "//ui/gl",
98 "//ui/gl/init", 99 "//ui/gl/init",
99 ] 100 ]
100 101
101 if (ozone_platform_gbm) { 102 if (ozone_platform_gbm) {
102 configs += [ 103 configs += [
103 ":libdrm", 104 ":libdrm",
104 "//ui/gl:gl_config", 105 "//ui/gl:gl_config",
105 ] 106 ]
106 defines = [ "OZONE_PLATFORM_GBM" ] 107 defines = [ "OZONE_PLATFORM_GBM" ]
107 deps += [ "//third_party/minigbm" ] 108 deps += [ "//third_party/minigbm" ]
108 } 109 }
109 } 110 }
OLDNEW
« no previous file with comments | « no previous file | components/exo/wayland/clients/motion_events.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698