OLD | NEW |
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 "compositor_frame_sink_holder.cc", |
| 13 "compositor_frame_sink_holder.h", |
12 "display.cc", | 14 "display.cc", |
13 "display.h", | 15 "display.h", |
| 16 "exo_compositor_frame_sink.cc", |
| 17 "exo_compositor_frame_sink.h", |
14 "gamepad.cc", | 18 "gamepad.cc", |
15 "gamepad.h", | 19 "gamepad.h", |
16 "keyboard.cc", | 20 "keyboard.cc", |
17 "keyboard.h", | 21 "keyboard.h", |
18 "keyboard_delegate.h", | 22 "keyboard_delegate.h", |
19 "notification_surface.cc", | 23 "notification_surface.cc", |
20 "notification_surface.h", | 24 "notification_surface.h", |
21 "notification_surface_manager.h", | 25 "notification_surface_manager.h", |
22 "pointer.cc", | 26 "pointer.cc", |
23 "pointer.h", | 27 "pointer.h", |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 ] | 166 ] |
163 | 167 |
164 if (use_x11) { | 168 if (use_x11) { |
165 deps += [ "//tools/xdisplaycheck" ] | 169 deps += [ "//tools/xdisplaycheck" ] |
166 } | 170 } |
167 | 171 |
168 if (is_linux) { | 172 if (is_linux) { |
169 deps += [ "//components/exo/wayland:unit_tests" ] | 173 deps += [ "//components/exo/wayland:unit_tests" ] |
170 } | 174 } |
171 } | 175 } |
OLD | NEW |