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

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

Issue 2506263002: exo: Implement support for zcr_keyboard_configuration_v1 protocol. (Closed)
Patch Set: add one more TODO Created 4 years 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/keyboard.h » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("exo") { 8 source_set("exo") {
9 sources = [ 9 sources = [
10 "buffer.cc", 10 "buffer.cc",
11 "buffer.h", 11 "buffer.h",
12 "display.cc", 12 "display.cc",
13 "display.h", 13 "display.h",
14 "gamepad.cc", 14 "gamepad.cc",
15 "gamepad.h", 15 "gamepad.h",
16 "keyboard.cc", 16 "keyboard.cc",
17 "keyboard.h", 17 "keyboard.h",
18 "keyboard_delegate.h", 18 "keyboard_delegate.h",
19 "keyboard_device_configuration_delegate.h",
19 "notification_surface.cc", 20 "notification_surface.cc",
20 "notification_surface.h", 21 "notification_surface.h",
21 "notification_surface_manager.h", 22 "notification_surface_manager.h",
22 "pointer.cc", 23 "pointer.cc",
23 "pointer.h", 24 "pointer.h",
24 "pointer_delegate.h", 25 "pointer_delegate.h",
25 "shared_memory.cc", 26 "shared_memory.cc",
26 "shared_memory.h", 27 "shared_memory.h",
27 "shell_surface.cc", 28 "shell_surface.cc",
28 "shell_surface.h", 29 "shell_surface.h",
(...skipping 22 matching lines...) Expand all
51 "//cc", 52 "//cc",
52 "//cc/surfaces:surfaces", 53 "//cc/surfaces:surfaces",
53 "//device/gamepad", 54 "//device/gamepad",
54 "//gpu", 55 "//gpu",
55 "//gpu/command_buffer/client:gles2_interface", 56 "//gpu/command_buffer/client:gles2_interface",
56 "//services/ui/public/cpp", 57 "//services/ui/public/cpp",
57 "//skia", 58 "//skia",
58 "//ui/aura", 59 "//ui/aura",
59 "//ui/compositor", 60 "//ui/compositor",
60 "//ui/display/manager", 61 "//ui/display/manager",
62 "//ui/events/devices:devices",
61 "//ui/gfx", 63 "//ui/gfx",
62 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
63 "//ui/gl", 65 "//ui/gl",
64 "//ui/views", 66 "//ui/views",
65 "//ui/views/mus", 67 "//ui/views/mus",
66 "//ui/wm:wm", 68 "//ui/wm:wm",
67 ] 69 ]
68 70
69 if (is_chromeos) { 71 if (is_chromeos) {
70 deps += [ "//chromeos" ] 72 deps += [ "//chromeos" ]
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 data_deps = [ 161 data_deps = [
160 "//ash/common/strings:ash_test_strings", 162 "//ash/common/strings:ash_test_strings",
161 "//ash/resources:ash_test_resources_100_percent", 163 "//ash/resources:ash_test_resources_100_percent",
162 "//ash/resources:ash_test_resources_200_percent", 164 "//ash/resources:ash_test_resources_200_percent",
163 ] 165 ]
164 166
165 if (is_linux) { 167 if (is_linux) {
166 deps += [ "//components/exo/wayland:unit_tests" ] 168 deps += [ "//components/exo/wayland:unit_tests" ]
167 } 169 }
168 } 170 }
OLDNEW
« no previous file with comments | « no previous file | components/exo/keyboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698