| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("unittest_support") { | 8 static_library("unittest_support") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//base", | 22 "//base", |
| 23 "//services/ui/public/cpp", | 23 "//services/ui/public/cpp", |
| 24 "//services/ui/public/cpp:internal_or_test", | 24 "//services/ui/public/cpp:internal_or_test", |
| 25 "//services/ui/public/interfaces", | 25 "//services/ui/public/interfaces", |
| 26 "//testing/gtest", | 26 "//testing/gtest", |
| 27 "//ui/display", | 27 "//ui/display", |
| 28 "//ui/gfx/geometry/mojo", | 28 "//ui/gfx/geometry/mojo", |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 static_library("test_support") { | |
| 33 testonly = true | |
| 34 | |
| 35 sources = [ | |
| 36 "window_server_shelltest_base.cc", | |
| 37 "window_server_shelltest_base.h", | |
| 38 "window_server_test_base.cc", | |
| 39 "window_server_test_base.h", | |
| 40 ] | |
| 41 | |
| 42 deps = [ | |
| 43 "//base", | |
| 44 "//base/test:test_config", | |
| 45 "//services/service_manager/public/cpp:service_test_support", | |
| 46 "//services/service_manager/public/cpp:sources", | |
| 47 "//services/ui/common:mus_common", | |
| 48 "//services/ui/public/cpp", | |
| 49 "//testing/gtest", | |
| 50 "//ui/display:test_support", | |
| 51 "//ui/gl", | |
| 52 ] | |
| 53 } | |
| 54 | |
| 55 test("mus_public_unittests") { | 32 test("mus_public_unittests") { |
| 56 sources = [ | 33 sources = [ |
| 57 "property_type_converters_unittest.cc", | 34 "property_type_converters_unittest.cc", |
| 58 "run_all_unittests.cc", | 35 "run_all_unittests.cc", |
| 59 "window_server_test_suite.cc", | 36 "window_server_test_suite.cc", |
| 60 "window_server_test_suite.h", | 37 "window_server_test_suite.h", |
| 61 "window_tree_client_unittest.cc", | 38 "window_tree_client_unittest.cc", |
| 62 "window_unittest.cc", | 39 "window_unittest.cc", |
| 63 ] | 40 ] |
| 64 | 41 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 78 "//ui/events", | 55 "//ui/events", |
| 79 "//ui/gfx:test_support", | 56 "//ui/gfx:test_support", |
| 80 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 81 "//ui/gfx/geometry/mojo", | 58 "//ui/gfx/geometry/mojo", |
| 82 ] | 59 ] |
| 83 | 60 |
| 84 if (use_x11) { | 61 if (use_x11) { |
| 85 deps += [ "//ui/gfx/x" ] | 62 deps += [ "//ui/gfx/x" ] |
| 86 } | 63 } |
| 87 } | 64 } |
| OLD | NEW |