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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ] | 160 ] |
157 | 161 |
158 if (use_x11) { | 162 if (use_x11) { |
159 deps += [ "//tools/xdisplaycheck" ] | 163 deps += [ "//tools/xdisplaycheck" ] |
160 } | 164 } |
161 | 165 |
162 if (is_linux) { | 166 if (is_linux) { |
163 deps += [ "//components/exo/wayland:unit_tests" ] | 167 deps += [ "//components/exo/wayland:unit_tests" ] |
164 } | 168 } |
165 } | 169 } |
OLD | NEW |