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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 sources = [ | 71 sources = [ |
72 "test/exo_test_base.cc", | 72 "test/exo_test_base.cc", |
73 "test/exo_test_base.h", | 73 "test/exo_test_base.h", |
74 "test/exo_test_helper.cc", | 74 "test/exo_test_helper.cc", |
75 "test/exo_test_helper.h", | 75 "test/exo_test_helper.h", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 ":exo", | 79 ":exo", |
80 "//ash:test_support_without_content", | 80 "//ash:test_support", |
81 "//base", | 81 "//base", |
82 "//gpu", | 82 "//gpu", |
83 "//skia", | 83 "//skia", |
84 "//testing/gtest", | 84 "//testing/gtest", |
85 "//ui/aura", | 85 "//ui/aura", |
86 "//ui/compositor", | 86 "//ui/compositor", |
87 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
88 "//ui/wm:wm", | 88 "//ui/wm:wm", |
89 ] | 89 ] |
90 } | 90 } |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 } | 134 } |
135 } | 135 } |
136 | 136 |
137 test("exo_unittests") { | 137 test("exo_unittests") { |
138 sources = [ | 138 sources = [ |
139 "test/run_all_unittests.cc", | 139 "test/run_all_unittests.cc", |
140 ] | 140 ] |
141 | 141 |
142 deps = [ | 142 deps = [ |
143 ":unit_tests", | 143 ":unit_tests", |
144 "//ash:test_support_without_content", | 144 "//ash:test_support", |
145 "//base", | 145 "//base", |
146 "//base/test:test_support", | 146 "//base/test:test_support", |
147 "//device/gamepad:test_helpers", | 147 "//device/gamepad:test_helpers", |
148 ] | 148 ] |
149 | 149 |
150 data_deps = [ | 150 data_deps = [ |
151 "//ash/common/strings:ash_test_strings", | 151 "//ash/common/strings:ash_test_strings", |
152 "//ash/resources:ash_test_resources_100_percent", | 152 "//ash/resources:ash_test_resources_100_percent", |
153 "//ash/resources:ash_test_resources_200_percent", | 153 "//ash/resources:ash_test_resources_200_percent", |
154 ] | 154 ] |
155 | 155 |
156 if (use_x11) { | 156 if (use_x11) { |
157 deps += [ "//tools/xdisplaycheck" ] | 157 deps += [ "//tools/xdisplaycheck" ] |
158 } | 158 } |
159 | 159 |
160 if (is_linux) { | 160 if (is_linux) { |
161 deps += [ "//components/exo/wayland:unit_tests" ] | 161 deps += [ "//components/exo/wayland:unit_tests" ] |
162 } | 162 } |
163 } | 163 } |
OLD | NEW |