| 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", | |
| 257 "test/test_windows.cc", | 255 "test/test_windows.cc", |
| 258 "test/test_windows.h", | 256 "test/test_windows.h", |
| 259 "test/ui_controls_factory_aura.h", | 257 "test/ui_controls_factory_aura.h", |
| 260 "test/window_event_dispatcher_test_api.cc", | 258 "test/window_event_dispatcher_test_api.cc", |
| 261 "test/window_event_dispatcher_test_api.h", | 259 "test/window_event_dispatcher_test_api.h", |
| 262 "test/window_test_api.cc", | 260 "test/window_test_api.cc", |
| 263 "test/window_test_api.h", | 261 "test/window_test_api.h", |
| 264 ] | 262 ] |
| 265 | 263 |
| 266 # 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... |
| 374 ] | 372 ] |
| 375 | 373 |
| 376 if (is_linux) { | 374 if (is_linux) { |
| 377 deps += [ "//third_party/mesa" ] | 375 deps += [ "//third_party/mesa" ] |
| 378 } | 376 } |
| 379 | 377 |
| 380 data_deps = [ | 378 data_deps = [ |
| 381 "//third_party/mesa:osmesa", | 379 "//third_party/mesa:osmesa", |
| 382 ] | 380 ] |
| 383 } | 381 } |
| OLD | NEW |