| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "mus/input_method_mus.h", | 83 "mus/input_method_mus.h", |
| 84 "mus/mus_context_factory.cc", | 84 "mus/mus_context_factory.cc", |
| 85 "mus/mus_context_factory.h", | 85 "mus/mus_context_factory.h", |
| 86 "mus/mus_types.h", | 86 "mus/mus_types.h", |
| 87 "mus/mus_util.cc", | 87 "mus/mus_util.cc", |
| 88 "mus/mus_util.h", | 88 "mus/mus_util.h", |
| 89 "mus/os_exchange_data_provider_mus.cc", | 89 "mus/os_exchange_data_provider_mus.cc", |
| 90 "mus/os_exchange_data_provider_mus.h", | 90 "mus/os_exchange_data_provider_mus.h", |
| 91 "mus/property_converter.cc", | 91 "mus/property_converter.cc", |
| 92 "mus/property_converter.h", | 92 "mus/property_converter.h", |
| 93 "mus/property_utils.cc", |
| 94 "mus/property_utils.h", |
| 93 "mus/surface_id_handler.h", | 95 "mus/surface_id_handler.h", |
| 94 "mus/text_input_client_impl.cc", | 96 "mus/text_input_client_impl.cc", |
| 95 "mus/text_input_client_impl.h", | 97 "mus/text_input_client_impl.h", |
| 96 "mus/window_compositor_frame_sink.cc", | 98 "mus/window_compositor_frame_sink.cc", |
| 97 "mus/window_compositor_frame_sink.h", | 99 "mus/window_compositor_frame_sink.h", |
| 98 "mus/window_manager_delegate.cc", | 100 "mus/window_manager_delegate.cc", |
| 99 "mus/window_manager_delegate.h", | 101 "mus/window_manager_delegate.h", |
| 100 "mus/window_mus.h", | 102 "mus/window_mus.h", |
| 101 "mus/window_port_mus.cc", | 103 "mus/window_port_mus.cc", |
| 102 "mus/window_port_mus.h", | 104 "mus/window_port_mus.h", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 ] | 355 ] |
| 354 | 356 |
| 355 if (is_linux) { | 357 if (is_linux) { |
| 356 deps += [ "//third_party/mesa" ] | 358 deps += [ "//third_party/mesa" ] |
| 357 } | 359 } |
| 358 | 360 |
| 359 data_deps = [ | 361 data_deps = [ |
| 360 "//third_party/mesa:osmesa", | 362 "//third_party/mesa:osmesa", |
| 361 ] | 363 ] |
| 362 } | 364 } |
| OLD | NEW |