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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 86 |
87 if (use_x11) { | 87 if (use_x11) { |
88 configs += [ "//build/config/linux:x11" ] | 88 configs += [ "//build/config/linux:x11" ] |
89 deps += [ "//ui/events/devices/x11" ] | 89 deps += [ "//ui/events/devices/x11" ] |
90 } | 90 } |
91 } | 91 } |
92 | 92 |
93 static_library("test_support") { | 93 static_library("test_support") { |
94 testonly = true | 94 testonly = true |
95 sources = [ | 95 sources = [ |
| 96 "test/testing_cursor_client_observer.cc", |
| 97 "test/testing_cursor_client_observer.h", |
96 "test/wm_test_helper.cc", | 98 "test/wm_test_helper.cc", |
97 "test/wm_test_helper.h", | 99 "test/wm_test_helper.h", |
98 ] | 100 ] |
99 | 101 |
100 deps = [ | 102 deps = [ |
101 ":wm", | 103 ":wm", |
102 "//skia", | 104 "//skia", |
103 "//ui/aura", | 105 "//ui/aura", |
104 "//ui/aura:test_support", | 106 "//ui/aura:test_support", |
105 "//ui/base", | 107 "//ui/base", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "//ui/gfx", | 144 "//ui/gfx", |
143 "//ui/gfx/geometry", | 145 "//ui/gfx/geometry", |
144 "//ui/gl:test_support", | 146 "//ui/gl:test_support", |
145 "//ui/resources", | 147 "//ui/resources", |
146 ] | 148 ] |
147 | 149 |
148 data_deps = [ | 150 data_deps = [ |
149 "//ui/resources:ui_test_pak_data", | 151 "//ui/resources:ui_test_pak_data", |
150 ] | 152 ] |
151 } | 153 } |
OLD | NEW |