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

Side by Side Diff: components/exo/wayland/BUILD.gn

Issue 2404513002: exo: Implement zcr_linux_explicit_synchronization_v1
Patch Set: rebase, address review comments 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 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 7
8 if (use_xkbcommon) { 8 if (use_xkbcommon) {
9 pkg_config("xkbcommon") { 9 pkg_config("xkbcommon") {
10 packages = [ "xkbcommon" ] 10 packages = [ "xkbcommon" ]
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//ui/aura:aura", 46 "//ui/aura:aura",
47 "//ui/events:dom_keycode_converter", 47 "//ui/events:dom_keycode_converter",
48 "//ui/events:events_base", 48 "//ui/events:events_base",
49 "//ui/views", 49 "//ui/views",
50 ] 50 ]
51 51
52 if (use_ozone) { 52 if (use_ozone) {
53 deps += [ 53 deps += [
54 "//third_party/mesa:wayland_drm_protocol", 54 "//third_party/mesa:wayland_drm_protocol",
55 "//third_party/wayland-protocols:linux_dmabuf_protocol", 55 "//third_party/wayland-protocols:linux_dmabuf_protocol",
56 "//third_party/wayland-protocols:linux_explicit_synchronization_protocol",
56 ] 57 ]
57 configs += [ ":libdrm" ] 58 configs += [ ":libdrm" ]
58 } 59 }
59 60
60 if (use_xkbcommon) { 61 if (use_xkbcommon) {
61 configs += [ ":xkbcommon" ] 62 configs += [ ":xkbcommon" ]
62 defines += [ "USE_XKBCOMMON" ] 63 defines += [ "USE_XKBCOMMON" ]
63 deps += [ "//ui/events/keycodes:xkb" ] 64 deps += [ "//ui/events/keycodes:xkb" ]
64 } 65 }
65 } 66 }
66 67
67 source_set("unit_tests") { 68 source_set("unit_tests") {
68 testonly = true 69 testonly = true
69 70
70 sources = [ 71 sources = [
71 "server_unittest.cc", 72 "server_unittest.cc",
72 ] 73 ]
73 74
74 deps = [ 75 deps = [
75 ":wayland", 76 ":wayland",
76 "//base", 77 "//base",
77 "//components/exo", 78 "//components/exo",
78 "//testing/gtest", 79 "//testing/gtest",
79 "//third_party/wayland:wayland_client", 80 "//third_party/wayland:wayland_client",
80 ] 81 ]
81 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698