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 assert(enable_wayland_server) |
| 9 |
8 source_set("exo") { | 10 source_set("exo") { |
9 sources = [ | 11 sources = [ |
10 "buffer.cc", | 12 "buffer.cc", |
11 "buffer.h", | 13 "buffer.h", |
12 "display.cc", | 14 "display.cc", |
13 "display.h", | 15 "display.h", |
14 "keyboard.cc", | 16 "keyboard.cc", |
15 "keyboard.h", | 17 "keyboard.h", |
16 "keyboard_delegate.h", | 18 "keyboard_delegate.h", |
17 "pointer.cc", | 19 "pointer.cc", |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 deps = [ | 119 deps = [ |
118 ":unit_tests", | 120 ":unit_tests", |
119 "//ash:test_support", | 121 "//ash:test_support", |
120 "//base", | 122 "//base", |
121 "//base/test:test_support", | 123 "//base/test:test_support", |
122 ] | 124 ] |
123 if (is_linux) { | 125 if (is_linux) { |
124 deps += [ "//components/exo/wayland:unit_tests" ] | 126 deps += [ "//components/exo/wayland:unit_tests" ] |
125 } | 127 } |
126 } | 128 } |
OLD | NEW |