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 "display.cc", | 12 "display.cc", |
13 "display.h", | 13 "display.h", |
14 "keyboard.cc", | 14 "keyboard.cc", |
15 "keyboard.h", | 15 "keyboard.h", |
16 "keyboard_delegate.h", | 16 "keyboard_delegate.h", |
| 17 "notification_surface.cc", |
| 18 "notification_surface.h", |
| 19 "notification_surface_manager.h", |
17 "pointer.cc", | 20 "pointer.cc", |
18 "pointer.h", | 21 "pointer.h", |
19 "pointer_delegate.h", | 22 "pointer_delegate.h", |
20 "shared_memory.cc", | 23 "shared_memory.cc", |
21 "shared_memory.h", | 24 "shared_memory.h", |
22 "shell_surface.cc", | 25 "shell_surface.cc", |
23 "shell_surface.h", | 26 "shell_surface.h", |
24 "sub_surface.cc", | 27 "sub_surface.cc", |
25 "sub_surface.h", | 28 "sub_surface.h", |
26 "surface.cc", | 29 "surface.cc", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 deps = [ | 125 deps = [ |
123 ":unit_tests", | 126 ":unit_tests", |
124 "//ash:test_support", | 127 "//ash:test_support", |
125 "//base", | 128 "//base", |
126 "//base/test:test_support", | 129 "//base/test:test_support", |
127 ] | 130 ] |
128 if (is_linux) { | 131 if (is_linux) { |
129 deps += [ "//components/exo/wayland:unit_tests" ] | 132 deps += [ "//components/exo/wayland:unit_tests" ] |
130 } | 133 } |
131 } | 134 } |
OLD | NEW |