| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//skia", | 56 "//skia", |
| 57 "//ui/aura", | 57 "//ui/aura", |
| 58 "//ui/compositor", | 58 "//ui/compositor", |
| 59 "//ui/gfx", | 59 "//ui/gfx", |
| 60 "//ui/gfx/geometry", | 60 "//ui/gfx/geometry", |
| 61 "//ui/gl", | 61 "//ui/gl", |
| 62 "//ui/views", | 62 "//ui/views", |
| 63 "//ui/views/mus", | 63 "//ui/views/mus", |
| 64 "//ui/wm:wm", | 64 "//ui/wm:wm", |
| 65 ] | 65 ] |
| 66 |
| 67 if (is_chromeos) { |
| 68 deps += [ "//chromeos" ] |
| 69 } |
| 66 } | 70 } |
| 67 | 71 |
| 68 source_set("test_support") { | 72 source_set("test_support") { |
| 69 testonly = true | 73 testonly = true |
| 70 | 74 |
| 71 sources = [ | 75 sources = [ |
| 72 "test/exo_test_base.cc", | 76 "test/exo_test_base.cc", |
| 73 "test/exo_test_base.h", | 77 "test/exo_test_base.h", |
| 74 "test/exo_test_helper.cc", | 78 "test/exo_test_helper.cc", |
| 75 "test/exo_test_helper.h", | 79 "test/exo_test_helper.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ] | 158 ] |
| 155 | 159 |
| 156 if (use_x11) { | 160 if (use_x11) { |
| 157 deps += [ "//tools/xdisplaycheck" ] | 161 deps += [ "//tools/xdisplaycheck" ] |
| 158 } | 162 } |
| 159 | 163 |
| 160 if (is_linux) { | 164 if (is_linux) { |
| 161 deps += [ "//components/exo/wayland:unit_tests" ] | 165 deps += [ "//components/exo/wayland:unit_tests" ] |
| 162 } | 166 } |
| 163 } | 167 } |
| OLD | NEW |