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

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

Issue 2076013002: exo: Implement wayland gamepad support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serv
Patch Set: fixed nits and smaller issues Created 4 years, 5 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 13 matching lines...) Expand all
24 "server.cc", 24 "server.cc",
25 "server.h", 25 "server.h",
26 ] 26 ]
27 27
28 defines = [ "EXO_IMPLEMENTATION" ] 28 defines = [ "EXO_IMPLEMENTATION" ]
29 29
30 deps = [ 30 deps = [
31 "//ash", 31 "//ash",
32 "//base", 32 "//base",
33 "//components/exo", 33 "//components/exo",
34 "//device/gamepad",
34 "//ipc:ipc", 35 "//ipc:ipc",
35 "//skia", 36 "//skia",
36 "//third_party/wayland:wayland_server", 37 "//third_party/wayland:wayland_server",
37 "//third_party/wayland-protocols:alpha_compositing_protocol", 38 "//third_party/wayland-protocols:alpha_compositing_protocol",
39 "//third_party/wayland-protocols:gaming_input_protocol",
38 "//third_party/wayland-protocols:remote_shell_protocol", 40 "//third_party/wayland-protocols:remote_shell_protocol",
39 "//third_party/wayland-protocols:secure_output_protocol", 41 "//third_party/wayland-protocols:secure_output_protocol",
40 "//third_party/wayland-protocols:viewporter_protocol", 42 "//third_party/wayland-protocols:viewporter_protocol",
41 "//third_party/wayland-protocols:vsync_feedback_protocol", 43 "//third_party/wayland-protocols:vsync_feedback_protocol",
42 "//third_party/wayland-protocols:xdg_shell_protocol", 44 "//third_party/wayland-protocols:xdg_shell_protocol",
43 "//ui/aura:aura", 45 "//ui/aura:aura",
44 "//ui/events:dom_keycode_converter", 46 "//ui/events:dom_keycode_converter",
45 "//ui/events:events_base", 47 "//ui/events:events_base",
46 "//ui/views", 48 "//ui/views",
47 ] 49 ]
(...skipping 21 matching lines...) Expand all
69 ] 71 ]
70 72
71 deps = [ 73 deps = [
72 ":wayland", 74 ":wayland",
73 "//base", 75 "//base",
74 "//components/exo", 76 "//components/exo",
75 "//testing/gtest", 77 "//testing/gtest",
76 "//third_party/wayland:wayland_client", 78 "//third_party/wayland:wayland_client",
77 ] 79 ]
78 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698