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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 132 |
133 deps = [ | 133 deps = [ |
134 ":unit_tests", | 134 ":unit_tests", |
135 "//ash:test_support", | 135 "//ash:test_support", |
136 "//base", | 136 "//base", |
137 "//base/test:test_support", | 137 "//base/test:test_support", |
138 "//device/gamepad:test_helpers", | 138 "//device/gamepad:test_helpers", |
139 ] | 139 ] |
140 | 140 |
141 data_deps = [ | 141 data_deps = [ |
| 142 "//ash/common/strings:ash_test_strings", |
142 "//ash/resources:ash_test_resources_100_percent", | 143 "//ash/resources:ash_test_resources_100_percent", |
143 "//ash/resources:ash_test_resources_200_percent", | 144 "//ash/resources:ash_test_resources_200_percent", |
144 "//ash/strings:ash_test_strings", | |
145 ] | 145 ] |
146 | 146 |
147 if (use_x11) { | 147 if (use_x11) { |
148 deps += [ "//tools/xdisplaycheck" ] | 148 deps += [ "//tools/xdisplaycheck" ] |
149 } | 149 } |
150 | 150 |
151 if (is_linux) { | 151 if (is_linux) { |
152 deps += [ "//components/exo/wayland:unit_tests" ] | 152 deps += [ "//components/exo/wayland:unit_tests" ] |
153 } | 153 } |
154 } | 154 } |
OLD | NEW |