| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 sources = [ | 86 sources = [ |
| 87 "test/exo_test_base.cc", | 87 "test/exo_test_base.cc", |
| 88 "test/exo_test_base.h", | 88 "test/exo_test_base.h", |
| 89 "test/exo_test_helper.cc", | 89 "test/exo_test_helper.cc", |
| 90 "test/exo_test_helper.h", | 90 "test/exo_test_helper.h", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 ":exo", | 94 ":exo", |
| 95 "//ash/public/cpp:ash_public_cpp", | 95 "//ash/public/cpp:ash_public_cpp", |
| 96 "//ash/test:ash_with_aura_test_support", | |
| 97 "//ash/test:test_support_without_content", | 96 "//ash/test:test_support_without_content", |
| 98 "//base", | 97 "//base", |
| 99 "//gpu", | 98 "//gpu", |
| 100 "//skia", | 99 "//skia", |
| 101 "//testing/gtest", | 100 "//testing/gtest", |
| 102 "//ui/aura", | 101 "//ui/aura", |
| 103 "//ui/compositor", | 102 "//ui/compositor", |
| 104 "//ui/gfx/geometry", | 103 "//ui/gfx/geometry", |
| 105 "//ui/views", | 104 "//ui/views", |
| 106 "//ui/wm:wm", | 105 "//ui/wm:wm", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 test("exo_unittests") { | 156 test("exo_unittests") { |
| 158 sources = [ | 157 sources = [ |
| 159 "../../ash/test/ash_test_suite.cc", | 158 "../../ash/test/ash_test_suite.cc", |
| 160 "../../ash/test/ash_test_suite.h", | 159 "../../ash/test/ash_test_suite.h", |
| 161 "test/run_all_unittests.cc", | 160 "test/run_all_unittests.cc", |
| 162 ] | 161 ] |
| 163 | 162 |
| 164 deps = [ | 163 deps = [ |
| 165 ":unit_tests", | 164 ":unit_tests", |
| 166 "//ash/public/cpp:ash_public_cpp", | 165 "//ash/public/cpp:ash_public_cpp", |
| 167 "//ash/test:ash_with_aura_test_support", | |
| 168 "//ash/test:test_support_without_content", | 166 "//ash/test:test_support_without_content", |
| 169 "//base", | 167 "//base", |
| 170 "//base/test:test_support", | 168 "//base/test:test_support", |
| 171 "//device/gamepad:test_helpers", | 169 "//device/gamepad:test_helpers", |
| 172 "//mojo/edk/embedder:headers", | 170 "//mojo/edk/embedder:headers", |
| 173 "//testing/gtest", | 171 "//testing/gtest", |
| 174 "//ui/aura", | 172 "//ui/aura", |
| 175 "//ui/base", | 173 "//ui/base", |
| 176 "//ui/compositor:test_support", | 174 "//ui/compositor:test_support", |
| 177 "//ui/gl:test_support", | 175 "//ui/gl:test_support", |
| 178 ] | 176 ] |
| 179 | 177 |
| 180 data_deps = [ | 178 data_deps = [ |
| 181 "//ash/strings:ash_test_strings", | 179 "//ash/strings:ash_test_strings", |
| 182 "//ash/resources:ash_test_resources_100_percent", | 180 "//ash/resources:ash_test_resources_100_percent", |
| 183 "//ash/resources:ash_test_resources_200_percent", | 181 "//ash/resources:ash_test_resources_200_percent", |
| 184 ] | 182 ] |
| 185 | 183 |
| 186 if (is_linux) { | 184 if (is_linux) { |
| 187 deps += [ "//components/exo/wayland:unit_tests" ] | 185 deps += [ "//components/exo/wayland:unit_tests" ] |
| 188 } | 186 } |
| 189 } | 187 } |
| OLD | NEW |