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 component("wm") { | 8 component("wm") { |
9 sources = [ | 9 sources = [ |
10 "core/accelerator_delegate.h", | 10 "core/accelerator_delegate.h", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 ":wm", | 106 ":wm", |
107 "//skia", | 107 "//skia", |
108 "//ui/aura", | 108 "//ui/aura", |
109 "//ui/aura:test_support", | 109 "//ui/aura:test_support", |
110 "//ui/base", | 110 "//ui/base", |
111 "//ui/events", | 111 "//ui/events", |
112 "//ui/events:events_base", | 112 "//ui/events:events_base", |
113 ] | 113 ] |
114 } | 114 } |
115 | 115 |
116 test("wm_unittests") { | 116 if (!is_win || link_chrome_on_windows) { |
117 sources = [ | 117 test("wm_unittests") { |
118 "test/run_all_unittests.cc", | 118 sources = [ |
119 "core/capture_controller_unittest.cc", | 119 "test/run_all_unittests.cc", |
120 "core/compound_event_filter_unittest.cc", | 120 "core/capture_controller_unittest.cc", |
121 "core/cursor_manager_unittest.cc", | 121 "core/compound_event_filter_unittest.cc", |
122 "core/focus_controller_unittest.cc", | 122 "core/cursor_manager_unittest.cc", |
123 "core/input_method_event_filter_unittest.cc", | 123 "core/focus_controller_unittest.cc", |
124 "core/image_grid_unittest.cc", | 124 "core/input_method_event_filter_unittest.cc", |
125 "core/nested_accelerator_controller_unittest.cc", | 125 "core/image_grid_unittest.cc", |
126 "core/shadow_controller_unittest.cc", | 126 "core/nested_accelerator_controller_unittest.cc", |
127 "core/transient_window_manager_unittest.cc", | 127 "core/shadow_controller_unittest.cc", |
128 "core/transient_window_stacking_client_unittest.cc", | 128 "core/transient_window_manager_unittest.cc", |
129 "core/visibility_controller_unittest.cc", | 129 "core/transient_window_stacking_client_unittest.cc", |
130 "core/window_animations_unittest.cc", | 130 "core/visibility_controller_unittest.cc", |
131 ] | 131 "core/window_animations_unittest.cc", |
| 132 ] |
132 | 133 |
133 deps = [ | 134 deps = [ |
134 ":test_support", | 135 ":test_support", |
135 ":wm", | 136 ":wm", |
136 "//base", | 137 "//base", |
137 "//base/test:test_support", | 138 "//base/test:test_support", |
138 "//skia", | 139 "//skia", |
139 "//testing/gtest", | 140 "//testing/gtest", |
140 "//ui/aura:test_support", | 141 "//ui/aura:test_support", |
141 "//ui/base:test_support", | 142 "//ui/base:test_support", |
142 "//ui/compositor:test_support", | 143 "//ui/compositor:test_support", |
143 "//ui/events:test_support", | 144 "//ui/events:test_support", |
144 "//ui/events/platform", | 145 "//ui/events/platform", |
145 "//ui/gfx", | 146 "//ui/gfx", |
146 "//ui/gfx/geometry", | 147 "//ui/gfx/geometry", |
147 "//ui/gl", | 148 "//ui/gl", |
148 ] | 149 ] |
| 150 } |
149 } | 151 } |
OLD | NEW |