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