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("aura") { | 8 component("aura") { |
9 sources = [ | 9 sources = [ |
10 "../wm/public/activation_change_observer.cc", | 10 "../wm/public/activation_change_observer.cc", |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "test/test_cursor_client.cc", | 245 "test/test_cursor_client.cc", |
246 "test/test_cursor_client.h", | 246 "test/test_cursor_client.h", |
247 "test/test_focus_client.cc", | 247 "test/test_focus_client.cc", |
248 "test/test_focus_client.h", | 248 "test/test_focus_client.h", |
249 "test/test_screen.cc", | 249 "test/test_screen.cc", |
250 "test/test_screen.h", | 250 "test/test_screen.h", |
251 "test/test_window_delegate.cc", | 251 "test/test_window_delegate.cc", |
252 "test/test_window_delegate.h", | 252 "test/test_window_delegate.h", |
253 "test/test_window_parenting_client.cc", | 253 "test/test_window_parenting_client.cc", |
254 "test/test_window_parenting_client.h", | 254 "test/test_window_parenting_client.h", |
| 255 "test/test_window_targeter.cc", |
| 256 "test/test_window_targeter.h", |
255 "test/test_windows.cc", | 257 "test/test_windows.cc", |
256 "test/test_windows.h", | 258 "test/test_windows.h", |
257 "test/ui_controls_factory_aura.h", | 259 "test/ui_controls_factory_aura.h", |
258 "test/window_event_dispatcher_test_api.cc", | 260 "test/window_event_dispatcher_test_api.cc", |
259 "test/window_event_dispatcher_test_api.h", | 261 "test/window_event_dispatcher_test_api.h", |
260 "test/window_test_api.cc", | 262 "test/window_test_api.cc", |
261 "test/window_test_api.h", | 263 "test/window_test_api.h", |
262 ] | 264 ] |
263 | 265 |
264 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 ] | 374 ] |
373 | 375 |
374 if (is_linux) { | 376 if (is_linux) { |
375 deps += [ "//third_party/mesa" ] | 377 deps += [ "//third_party/mesa" ] |
376 } | 378 } |
377 | 379 |
378 data_deps = [ | 380 data_deps = [ |
379 "//third_party/mesa:osmesa", | 381 "//third_party/mesa:osmesa", |
380 ] | 382 ] |
381 } | 383 } |
OLD | NEW |