| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "mus/window_manager_delegate.cc", | 103 "mus/window_manager_delegate.cc", |
| 104 "mus/window_manager_delegate.h", | 104 "mus/window_manager_delegate.h", |
| 105 "mus/window_mus.h", | 105 "mus/window_mus.h", |
| 106 "mus/window_port_mus.cc", | 106 "mus/window_port_mus.cc", |
| 107 "mus/window_port_mus.h", | 107 "mus/window_port_mus.h", |
| 108 "mus/window_tree_client.cc", | 108 "mus/window_tree_client.cc", |
| 109 "mus/window_tree_client.h", | 109 "mus/window_tree_client.h", |
| 110 "mus/window_tree_client_delegate.cc", | 110 "mus/window_tree_client_delegate.cc", |
| 111 "mus/window_tree_client_delegate.h", | 111 "mus/window_tree_client_delegate.h", |
| 112 "mus/window_tree_client_observer.h", | 112 "mus/window_tree_client_observer.h", |
| 113 "mus/window_tree_client_test_observer.h", |
| 113 "mus/window_tree_host_mus.cc", | 114 "mus/window_tree_host_mus.cc", |
| 114 "mus/window_tree_host_mus.h", | 115 "mus/window_tree_host_mus.h", |
| 115 "mus/window_tree_host_mus_delegate.h", | 116 "mus/window_tree_host_mus_delegate.h", |
| 116 "scoped_window_targeter.cc", | 117 "scoped_window_targeter.cc", |
| 117 "scoped_window_targeter.h", | 118 "scoped_window_targeter.h", |
| 118 "window.cc", | 119 "window.cc", |
| 119 "window.h", | 120 "window.h", |
| 120 "window_delegate.h", | 121 "window_delegate.h", |
| 121 "window_event_dispatcher.cc", | 122 "window_event_dispatcher.cc", |
| 122 "window_event_dispatcher.h", | 123 "window_event_dispatcher.h", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "test/aura_test_base.h", | 227 "test/aura_test_base.h", |
| 227 "test/aura_test_helper.cc", | 228 "test/aura_test_helper.cc", |
| 228 "test/aura_test_helper.h", | 229 "test/aura_test_helper.h", |
| 229 "test/aura_test_utils.cc", | 230 "test/aura_test_utils.cc", |
| 230 "test/aura_test_utils.h", | 231 "test/aura_test_utils.h", |
| 231 "test/env_test_helper.h", | 232 "test/env_test_helper.h", |
| 232 "test/event_generator_delegate_aura.cc", | 233 "test/event_generator_delegate_aura.cc", |
| 233 "test/event_generator_delegate_aura.h", | 234 "test/event_generator_delegate_aura.h", |
| 234 "test/input_method_glue.cc", | 235 "test/input_method_glue.cc", |
| 235 "test/input_method_glue.h", | 236 "test/input_method_glue.h", |
| 237 "test/mus/change_completion_waiter.cc", |
| 238 "test/mus/change_completion_waiter.h", |
| 236 "test/mus/test_window_tree.cc", | 239 "test/mus/test_window_tree.cc", |
| 237 "test/mus/test_window_tree.h", | 240 "test/mus/test_window_tree.h", |
| 238 "test/mus/test_window_tree_client_setup.cc", | 241 "test/mus/test_window_tree_client_setup.cc", |
| 239 "test/mus/test_window_tree_client_setup.h", | 242 "test/mus/test_window_tree_client_setup.h", |
| 240 "test/mus/window_tree_client_private.cc", | 243 "test/mus/window_tree_client_private.cc", |
| 241 "test/mus/window_tree_client_private.h", | 244 "test/mus/window_tree_client_private.h", |
| 242 "test/test_cursor_client.cc", | 245 "test/test_cursor_client.cc", |
| 243 "test/test_cursor_client.h", | 246 "test/test_cursor_client.h", |
| 244 "test/test_focus_client.cc", | 247 "test/test_focus_client.cc", |
| 245 "test/test_focus_client.h", | 248 "test/test_focus_client.h", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 ] | 371 ] |
| 369 | 372 |
| 370 if (is_linux) { | 373 if (is_linux) { |
| 371 deps += [ "//third_party/mesa" ] | 374 deps += [ "//third_party/mesa" ] |
| 372 } | 375 } |
| 373 | 376 |
| 374 data_deps = [ | 377 data_deps = [ |
| 375 "//third_party/mesa:osmesa", | 378 "//third_party/mesa:osmesa", |
| 376 ] | 379 ] |
| 377 } | 380 } |
| OLD | NEW |