| 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", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//ui/compositor", | 77 "//ui/compositor", |
| 78 "//ui/gfx/geometry", | 78 "//ui/gfx/geometry", |
| 79 "//ui/wm:wm", | 79 "//ui/wm:wm", |
| 80 ] | 80 ] |
| 81 } | 81 } |
| 82 | 82 |
| 83 source_set("unit_tests") { | 83 source_set("unit_tests") { |
| 84 testonly = true | 84 testonly = true |
| 85 | 85 |
| 86 sources = [ | 86 sources = [ |
| 87 # Disable tests - they are flaky: crbug.com/630625 | 87 "buffer_unittest.cc", |
| 88 # "buffer_unittest.cc", | 88 "display_unittest.cc", |
| 89 # "display_unittest.cc", | 89 "gamepad_unittest.cc", |
| 90 # "gamepad_unittest.cc", | 90 "keyboard_unittest.cc", |
| 91 # "keyboard_unittest.cc", | 91 "pointer_unittest.cc", |
| 92 # "pointer_unittest.cc", | |
| 93 "shared_memory_unittest.cc", | 92 "shared_memory_unittest.cc", |
| 94 "shell_surface_unittest.cc", | 93 "shell_surface_unittest.cc", |
| 95 "sub_surface_unittest.cc", | 94 "sub_surface_unittest.cc", |
| 96 "surface_unittest.cc", | 95 "surface_unittest.cc", |
| 97 "touch_unittest.cc", | 96 "touch_unittest.cc", |
| 98 ] | 97 ] |
| 99 | 98 |
| 100 deps = [ | 99 deps = [ |
| 101 ":exo", | 100 ":exo", |
| 102 ":test_support", | 101 ":test_support", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 ] | 145 ] |
| 147 | 146 |
| 148 if (use_x11) { | 147 if (use_x11) { |
| 149 deps += [ "//tools/xdisplaycheck" ] | 148 deps += [ "//tools/xdisplaycheck" ] |
| 150 } | 149 } |
| 151 | 150 |
| 152 if (is_linux) { | 151 if (is_linux) { |
| 153 deps += [ "//components/exo/wayland:unit_tests" ] | 152 deps += [ "//components/exo/wayland:unit_tests" ] |
| 154 } | 153 } |
| 155 } | 154 } |
| OLD | NEW |