| 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "test/aura_test_utils.cc", | 233 "test/aura_test_utils.cc", |
| 234 "test/aura_test_utils.h", | 234 "test/aura_test_utils.h", |
| 235 "test/env_test_helper.h", | 235 "test/env_test_helper.h", |
| 236 "test/event_generator_delegate_aura.cc", | 236 "test/event_generator_delegate_aura.cc", |
| 237 "test/event_generator_delegate_aura.h", | 237 "test/event_generator_delegate_aura.h", |
| 238 "test/input_method_glue.cc", | 238 "test/input_method_glue.cc", |
| 239 "test/input_method_glue.h", | 239 "test/input_method_glue.h", |
| 240 "test/mus/change_completion_waiter.cc", | 240 "test/mus/change_completion_waiter.cc", |
| 241 "test/mus/change_completion_waiter.h", | 241 "test/mus/change_completion_waiter.h", |
| 242 "test/mus/input_method_mus_test_api.h", | 242 "test/mus/input_method_mus_test_api.h", |
| 243 "test/mus/test_window_manager_client.cc", |
| 244 "test/mus/test_window_manager_client.h", |
| 243 "test/mus/test_window_tree.cc", | 245 "test/mus/test_window_tree.cc", |
| 244 "test/mus/test_window_tree.h", | 246 "test/mus/test_window_tree.h", |
| 245 "test/mus/test_window_tree_client_setup.cc", | 247 "test/mus/test_window_tree_client_setup.cc", |
| 246 "test/mus/test_window_tree_client_setup.h", | 248 "test/mus/test_window_tree_client_setup.h", |
| 247 "test/mus/window_tree_client_private.cc", | 249 "test/mus/window_tree_client_private.cc", |
| 248 "test/mus/window_tree_client_private.h", | 250 "test/mus/window_tree_client_private.h", |
| 249 "test/test_cursor_client.cc", | 251 "test/test_cursor_client.cc", |
| 250 "test/test_cursor_client.h", | 252 "test/test_cursor_client.h", |
| 251 "test/test_focus_client.cc", | 253 "test/test_focus_client.cc", |
| 252 "test/test_focus_client.h", | 254 "test/test_focus_client.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 ] | 380 ] |
| 379 | 381 |
| 380 if (is_linux) { | 382 if (is_linux) { |
| 381 deps += [ "//third_party/mesa" ] | 383 deps += [ "//third_party/mesa" ] |
| 382 } | 384 } |
| 383 | 385 |
| 384 data_deps = [ | 386 data_deps = [ |
| 385 "//third_party/mesa:osmesa", | 387 "//third_party/mesa:osmesa", |
| 386 ] | 388 ] |
| 387 } | 389 } |
| OLD | NEW |