| 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 source_set("unittest_support") { | 8 source_set("unittest_support") { |
| 9 sources = [ | 9 sources = [ |
| 10 "test_window.h", | 10 "test_window.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//mojo/shell/public/cpp:shell_test_support", | 34 "//mojo/shell/public/cpp:shell_test_support", |
| 35 "//mojo/shell/public/cpp:sources", | 35 "//mojo/shell/public/cpp:sources", |
| 36 "//mojo/shell/public/cpp:test_support", | 36 "//mojo/shell/public/cpp:test_support", |
| 37 "//testing/gtest", | 37 "//testing/gtest", |
| 38 "//ui/gl", | 38 "//ui/gl", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 test("mojo_view_manager_lib_unittests") { | 42 test("mojo_view_manager_lib_unittests") { |
| 43 sources = [ | 43 sources = [ |
| 44 "property_type_converters_unittest.cc", |
| 44 "run_all_unittests.cc", | 45 "run_all_unittests.cc", |
| 45 "test_window_tree.cc", | 46 "test_window_tree.cc", |
| 46 "test_window_tree.h", | 47 "test_window_tree.h", |
| 47 "window_server_test_suite.cc", | 48 "window_server_test_suite.cc", |
| 48 "window_server_test_suite.h", | 49 "window_server_test_suite.h", |
| 49 "window_tree_client_impl_unittest.cc", | 50 "window_tree_client_impl_unittest.cc", |
| 50 "window_unittest.cc", | 51 "window_unittest.cc", |
| 51 ] | 52 ] |
| 52 | 53 |
| 53 deps = [ | 54 deps = [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 68 "//ui/events", | 69 "//ui/events", |
| 69 "//ui/gfx:test_support", | 70 "//ui/gfx:test_support", |
| 70 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
| 71 "//ui/mojo/geometry:interfaces", | 72 "//ui/mojo/geometry:interfaces", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 if (use_x11) { | 75 if (use_x11) { |
| 75 deps += [ "//ui/gfx/x" ] | 76 deps += [ "//ui/gfx/x" ] |
| 76 } | 77 } |
| 77 } | 78 } |
| OLD | NEW |