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 | 6 |
7 component("aura") { | 7 component("aura") { |
8 sources = [ | 8 sources = [ |
9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 "test/test_focus_client.h", | 157 "test/test_focus_client.h", |
158 "test/test_screen.cc", | 158 "test/test_screen.cc", |
159 "test/test_screen.h", | 159 "test/test_screen.h", |
160 "test/test_window_tree_client.cc", | 160 "test/test_window_tree_client.cc", |
161 "test/test_window_tree_client.h", | 161 "test/test_window_tree_client.h", |
162 "test/test_windows.cc", | 162 "test/test_windows.cc", |
163 "test/test_windows.h", | 163 "test/test_windows.h", |
164 "test/test_window_delegate.cc", | 164 "test/test_window_delegate.cc", |
165 "test/test_window_delegate.h", | 165 "test/test_window_delegate.h", |
166 "test/ui_controls_factory_aura.h", | 166 "test/ui_controls_factory_aura.h", |
| 167 "test/window_event_dispatcher_test_api.cc", |
| 168 "test/window_event_dispatcher_test_api.h", |
167 "test/window_test_api.cc", | 169 "test/window_test_api.cc", |
168 "test/window_test_api.h", | 170 "test/window_test_api.h", |
169 ] | 171 ] |
170 | 172 |
171 deps = [ | 173 deps = [ |
172 ":aura", | 174 ":aura", |
173 "//skia", | 175 "//skia", |
174 "//testing/gtest", | 176 "//testing/gtest", |
175 "//ui/base", | 177 "//ui/base", |
176 "//ui/base:ui_base_test_support", | 178 "//ui/base:ui_base_test_support", |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 # ] | 296 # ] |
295 # } | 297 # } |
296 # | 298 # |
297 # if (is_linux) { # && use_allocator != "none") { | 299 # if (is_linux) { # && use_allocator != "none") { |
298 # deps += [ | 300 # deps += [ |
299 # # See http://crbug.com/162998#c4 for why this is needed. | 301 # # See http://crbug.com/162998#c4 for why this is needed. |
300 # "//base/allocator", | 302 # "//base/allocator", |
301 # ] | 303 # ] |
302 # } | 304 # } |
303 #} | 305 #} |
OLD | NEW |