Chromium Code Reviews| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 156 | 156 |
| 157 test("exo_unittests") { | 157 test("exo_unittests") { |
| 158 sources = [ | 158 sources = [ |
| 159 "../../ash/test/ash_test_suite.cc", | 159 "../../ash/test/ash_test_suite.cc", |
| 160 "../../ash/test/ash_test_suite.h", | 160 "../../ash/test/ash_test_suite.h", |
| 161 "test/run_all_unittests.cc", | 161 "test/run_all_unittests.cc", |
| 162 ] | 162 ] |
| 163 | 163 |
| 164 deps = [ | 164 deps = [ |
| 165 ":unit_tests", | 165 ":unit_tests", |
| 166 "//ash/public/cpp:ash_public_cpp", | |
|
msw
2017/03/30 23:06:05
Are either of these actually needed/used by this t
sky
2017/03/30 23:35:46
Yes. This code uses ash_test_suite above, which I
| |
| 166 "//ash/test:ash_with_aura_test_support", | 167 "//ash/test:ash_with_aura_test_support", |
| 167 "//ash/test:test_support_without_content", | 168 "//ash/test:test_support_without_content", |
| 168 "//base", | 169 "//base", |
| 169 "//base/test:test_support", | 170 "//base/test:test_support", |
| 170 "//device/gamepad:test_helpers", | 171 "//device/gamepad:test_helpers", |
| 171 "//mojo/edk/embedder:headers", | 172 "//mojo/edk/embedder:headers", |
| 172 "//testing/gtest", | 173 "//testing/gtest", |
| 173 "//ui/aura", | 174 "//ui/aura", |
| 174 "//ui/base", | 175 "//ui/base", |
| 176 "//ui/compositor:test_support", | |
| 175 "//ui/gl:test_support", | 177 "//ui/gl:test_support", |
| 176 ] | 178 ] |
| 177 | 179 |
| 178 data_deps = [ | 180 data_deps = [ |
| 179 "//ash/strings:ash_test_strings", | 181 "//ash/strings:ash_test_strings", |
| 180 "//ash/resources:ash_test_resources_100_percent", | 182 "//ash/resources:ash_test_resources_100_percent", |
| 181 "//ash/resources:ash_test_resources_200_percent", | 183 "//ash/resources:ash_test_resources_200_percent", |
| 182 ] | 184 ] |
| 183 | 185 |
| 184 if (is_linux) { | 186 if (is_linux) { |
| 185 deps += [ "//components/exo/wayland:unit_tests" ] | 187 deps += [ "//components/exo/wayland:unit_tests" ] |
| 186 } | 188 } |
| 187 } | 189 } |
| OLD | NEW |