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

Side by Side Diff: ui/ozone/platform/wayland/BUILD.gn

Issue 1841083003: ozone/platform/wayland: Implement keyboard handling Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | ui/ozone/platform/wayland/wayland.gypi » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 visibility = [ "//ui/ozone/*" ] 5 visibility = [ "//ui/ozone/*" ]
6 6
7 source_set("wayland") { 7 source_set("wayland") {
8 sources = [ 8 sources = [
9 "client_native_pixmap_factory_wayland.cc", 9 "client_native_pixmap_factory_wayland.cc",
10 "client_native_pixmap_factory_wayland.h", 10 "client_native_pixmap_factory_wayland.h",
11 "ozone_platform_wayland.cc", 11 "ozone_platform_wayland.cc",
12 "ozone_platform_wayland.h", 12 "ozone_platform_wayland.h",
13 "wayland_display.cc", 13 "wayland_display.cc",
14 "wayland_display.h", 14 "wayland_display.h",
15 "wayland_keyboard.cc",
16 "wayland_keyboard.h",
15 "wayland_object.cc", 17 "wayland_object.cc",
16 "wayland_object.h", 18 "wayland_object.h",
17 "wayland_pointer.cc", 19 "wayland_pointer.cc",
18 "wayland_pointer.h", 20 "wayland_pointer.h",
19 "wayland_surface_factory.cc", 21 "wayland_surface_factory.cc",
20 "wayland_surface_factory.h", 22 "wayland_surface_factory.h",
21 "wayland_window.cc", 23 "wayland_window.cc",
22 "wayland_window.h", 24 "wayland_window.h",
23 ] 25 ]
24 26
25 deps = [ 27 deps = [
26 "//base", 28 "//base",
27 "//skia", 29 "//skia",
28 "//third_party/wayland:wayland_client", 30 "//third_party/wayland:wayland_client",
29 "//third_party/wayland-protocols:xdg_shell_protocol", 31 "//third_party/wayland-protocols:xdg_shell_protocol",
30 "//ui/events", 32 "//ui/events",
33 "//ui/events/ozone:events_ozone_evdev",
34 "//ui/events/ozone:events_ozone_layout",
31 "//ui/events/platform", 35 "//ui/events/platform",
32 "//ui/gfx", 36 "//ui/gfx",
33 "//ui/gfx/geometry", 37 "//ui/gfx/geometry",
34 "//ui/ozone:ozone_base", 38 "//ui/ozone:ozone_base",
35 "//ui/ozone/common", 39 "//ui/ozone/common",
36 "//ui/platform_window", 40 "//ui/platform_window",
37 ] 41 ]
38 42
39 defines = [ "OZONE_IMPLEMENTATION" ] 43 defines = [ "OZONE_IMPLEMENTATION" ]
40 } 44 }
(...skipping 18 matching lines...) Expand all
59 "//testing/gmock", 63 "//testing/gmock",
60 "//testing/gtest", 64 "//testing/gtest",
61 "//third_party/wayland:wayland_server", 65 "//third_party/wayland:wayland_server",
62 "//third_party/wayland-protocols:xdg_shell_protocol", 66 "//third_party/wayland-protocols:xdg_shell_protocol",
63 "//ui/gfx:test_support", 67 "//ui/gfx:test_support",
64 "//ui/ozone:platform", 68 "//ui/ozone:platform",
65 ] 69 ]
66 70
67 defines = [ "WL_HIDE_DEPRECATED" ] 71 defines = [ "WL_HIDE_DEPRECATED" ]
68 } 72 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/platform/wayland/wayland.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698