| 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 |
| 11 sources = [ | 11 sources = [ |
| 12 "test_window.h", | 12 "test_window.h", |
| 13 "test_window_tree.cc", | 13 "test_window_tree.cc", |
| 14 "test_window_tree.h", | 14 "test_window_tree.h", |
| 15 "test_window_tree_client_setup.cc", | 15 "test_window_tree_client_setup.cc", |
| 16 "test_window_tree_client_setup.h", | 16 "test_window_tree_client_setup.h", |
| 17 "window_tree_client_private.cc", | 17 "window_tree_client_private.cc", |
| 18 "window_tree_client_private.h", | 18 "window_tree_client_private.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 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 "//testing/gtest", | 26 "//testing/gtest", |
| 26 "//ui/display", | 27 "//ui/display", |
| 27 "//ui/gfx/geometry/mojo", | 28 "//ui/gfx/geometry/mojo", |
| 28 ] | 29 ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 static_library("test_support") { | 32 static_library("test_support") { |
| 32 testonly = true | 33 testonly = true |
| 33 | 34 |
| 34 sources = [ | 35 sources = [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//ui/events", | 76 "//ui/events", |
| 76 "//ui/gfx:test_support", | 77 "//ui/gfx:test_support", |
| 77 "//ui/gfx/geometry", | 78 "//ui/gfx/geometry", |
| 78 "//ui/gfx/geometry/mojo", | 79 "//ui/gfx/geometry/mojo", |
| 79 ] | 80 ] |
| 80 | 81 |
| 81 if (use_x11) { | 82 if (use_x11) { |
| 82 deps += [ "//ui/gfx/x" ] | 83 deps += [ "//ui/gfx/x" ] |
| 83 } | 84 } |
| 84 } | 85 } |
| OLD | NEW |