| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "//ui/aura", | 129 "//ui/aura", |
| 130 "//ui/events:dom_keycode_converter", | 130 "//ui/events:dom_keycode_converter", |
| 131 "//ui/events:test_support", | 131 "//ui/events:test_support", |
| 132 "//ui/gfx", | 132 "//ui/gfx", |
| 133 "//ui/keyboard", | 133 "//ui/keyboard", |
| 134 "//ui/message_center", | 134 "//ui/message_center", |
| 135 "//ui/views", | 135 "//ui/views", |
| 136 "//ui/wm:wm", | 136 "//ui/wm:wm", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 if (is_linux) { |
| 140 deps += [ "//third_party/libsync:libsync" ] |
| 141 } |
| 142 |
| 139 if (use_ozone) { | 143 if (use_ozone) { |
| 140 deps += [ "//ui/ozone" ] | 144 deps += [ "//ui/ozone" ] |
| 141 } | 145 } |
| 142 } | 146 } |
| 143 | 147 |
| 144 test("exo_unittests") { | 148 test("exo_unittests") { |
| 145 sources = [ | 149 sources = [ |
| 146 "test/run_all_unittests.cc", | 150 "test/run_all_unittests.cc", |
| 147 ] | 151 ] |
| 148 | 152 |
| (...skipping 13 matching lines...) Expand all 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 |