| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "test/aura_test_helper.h", | 227 "test/aura_test_helper.h", |
| 228 "test/aura_test_utils.cc", | 228 "test/aura_test_utils.cc", |
| 229 "test/aura_test_utils.h", | 229 "test/aura_test_utils.h", |
| 230 "test/env_test_helper.h", | 230 "test/env_test_helper.h", |
| 231 "test/event_generator_delegate_aura.cc", | 231 "test/event_generator_delegate_aura.cc", |
| 232 "test/event_generator_delegate_aura.h", | 232 "test/event_generator_delegate_aura.h", |
| 233 "test/input_method_glue.cc", | 233 "test/input_method_glue.cc", |
| 234 "test/input_method_glue.h", | 234 "test/input_method_glue.h", |
| 235 "test/mus/change_completion_waiter.cc", | 235 "test/mus/change_completion_waiter.cc", |
| 236 "test/mus/change_completion_waiter.h", | 236 "test/mus/change_completion_waiter.h", |
| 237 "test/mus/input_method_mus_test_api.h", |
| 237 "test/mus/test_window_tree.cc", | 238 "test/mus/test_window_tree.cc", |
| 238 "test/mus/test_window_tree.h", | 239 "test/mus/test_window_tree.h", |
| 239 "test/mus/test_window_tree_client_setup.cc", | 240 "test/mus/test_window_tree_client_setup.cc", |
| 240 "test/mus/test_window_tree_client_setup.h", | 241 "test/mus/test_window_tree_client_setup.h", |
| 241 "test/mus/window_tree_client_private.cc", | 242 "test/mus/window_tree_client_private.cc", |
| 242 "test/mus/window_tree_client_private.h", | 243 "test/mus/window_tree_client_private.h", |
| 243 "test/test_cursor_client.cc", | 244 "test/test_cursor_client.cc", |
| 244 "test/test_cursor_client.h", | 245 "test/test_cursor_client.h", |
| 245 "test/test_focus_client.cc", | 246 "test/test_focus_client.cc", |
| 246 "test/test_focus_client.h", | 247 "test/test_focus_client.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 ] | 373 ] |
| 373 | 374 |
| 374 if (is_linux) { | 375 if (is_linux) { |
| 375 deps += [ "//third_party/mesa" ] | 376 deps += [ "//third_party/mesa" ] |
| 376 } | 377 } |
| 377 | 378 |
| 378 data_deps = [ | 379 data_deps = [ |
| 379 "//third_party/mesa:osmesa", | 380 "//third_party/mesa:osmesa", |
| 380 ] | 381 ] |
| 381 } | 382 } |
| OLD | NEW |