| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "mus/capture_synchronizer.h", | 72 "mus/capture_synchronizer.h", |
| 73 "mus/capture_synchronizer_delegate.h", | 73 "mus/capture_synchronizer_delegate.h", |
| 74 "mus/client_surface_embedder.cc", | 74 "mus/client_surface_embedder.cc", |
| 75 "mus/client_surface_embedder.h", | 75 "mus/client_surface_embedder.h", |
| 76 "mus/drag_drop_controller_host.h", | 76 "mus/drag_drop_controller_host.h", |
| 77 "mus/drag_drop_controller_mus.cc", | 77 "mus/drag_drop_controller_mus.cc", |
| 78 "mus/drag_drop_controller_mus.h", | 78 "mus/drag_drop_controller_mus.h", |
| 79 "mus/focus_synchronizer.cc", | 79 "mus/focus_synchronizer.cc", |
| 80 "mus/focus_synchronizer.h", | 80 "mus/focus_synchronizer.h", |
| 81 "mus/focus_synchronizer_delegate.h", | 81 "mus/focus_synchronizer_delegate.h", |
| 82 "mus/focus_synchronizer_observer.h", |
| 82 "mus/in_flight_change.cc", | 83 "mus/in_flight_change.cc", |
| 83 "mus/in_flight_change.h", | 84 "mus/in_flight_change.h", |
| 84 "mus/input_method_mus.cc", | 85 "mus/input_method_mus.cc", |
| 85 "mus/input_method_mus.h", | 86 "mus/input_method_mus.h", |
| 86 "mus/mus_context_factory.cc", | 87 "mus/mus_context_factory.cc", |
| 87 "mus/mus_context_factory.h", | 88 "mus/mus_context_factory.h", |
| 88 "mus/mus_mouse_location_updater.cc", | 89 "mus/mus_mouse_location_updater.cc", |
| 89 "mus/mus_mouse_location_updater.h", | 90 "mus/mus_mouse_location_updater.h", |
| 90 "mus/mus_types.h", | 91 "mus/mus_types.h", |
| 91 "mus/os_exchange_data_provider_mus.cc", | 92 "mus/os_exchange_data_provider_mus.cc", |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 ] | 376 ] |
| 376 | 377 |
| 377 if (is_linux) { | 378 if (is_linux) { |
| 378 deps += [ "//third_party/mesa" ] | 379 deps += [ "//third_party/mesa" ] |
| 379 } | 380 } |
| 380 | 381 |
| 381 data_deps = [ | 382 data_deps = [ |
| 382 "//third_party/mesa:osmesa", | 383 "//third_party/mesa:osmesa", |
| 383 ] | 384 ] |
| 384 } | 385 } |
| OLD | NEW |