| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "input_state_lookup_win.cc", | 67 "input_state_lookup_win.cc", |
| 68 "input_state_lookup_win.h", | 68 "input_state_lookup_win.h", |
| 69 "layout_manager.cc", | 69 "layout_manager.cc", |
| 70 "layout_manager.h", | 70 "layout_manager.h", |
| 71 "mus/capture_synchronizer.cc", | 71 "mus/capture_synchronizer.cc", |
| 72 "mus/capture_synchronizer.h", | 72 "mus/capture_synchronizer.h", |
| 73 "mus/capture_synchronizer_delegate.h", | 73 "mus/capture_synchronizer_delegate.h", |
| 74 "mus/drag_drop_controller_host.h", | 74 "mus/drag_drop_controller_host.h", |
| 75 "mus/drag_drop_controller_mus.cc", | 75 "mus/drag_drop_controller_mus.cc", |
| 76 "mus/drag_drop_controller_mus.h", | 76 "mus/drag_drop_controller_mus.h", |
| 77 "mus/gpu_memory_buffer_impl.cc", |
| 78 "mus/gpu_memory_buffer_impl.h", |
| 79 "mus/gpu_service.cc", |
| 80 "mus/gpu_service.h", |
| 77 "mus/in_flight_change.cc", | 81 "mus/in_flight_change.cc", |
| 78 "mus/in_flight_change.h", | 82 "mus/in_flight_change.h", |
| 79 "mus/input_method_mus.cc", | 83 "mus/input_method_mus.cc", |
| 80 "mus/input_method_mus.h", | 84 "mus/input_method_mus.h", |
| 85 "mus/mojo_gpu_memory_buffer.cc", |
| 86 "mus/mojo_gpu_memory_buffer.h", |
| 87 "mus/mojo_gpu_memory_buffer_manager.cc", |
| 88 "mus/mojo_gpu_memory_buffer_manager.h", |
| 81 "mus/mus_types.h", | 89 "mus/mus_types.h", |
| 82 "mus/mus_util.cc", | 90 "mus/mus_util.cc", |
| 83 "mus/mus_util.h", | 91 "mus/mus_util.h", |
| 84 "mus/os_exchange_data_provider_mus.cc", | 92 "mus/os_exchange_data_provider_mus.cc", |
| 85 "mus/os_exchange_data_provider_mus.h", | 93 "mus/os_exchange_data_provider_mus.h", |
| 86 "mus/property_converter.h", | 94 "mus/property_converter.h", |
| 87 "mus/surface_id_handler.h", | 95 "mus/surface_id_handler.h", |
| 88 "mus/text_input_client_impl.cc", | 96 "mus/text_input_client_impl.cc", |
| 89 "mus/text_input_client_impl.h", | 97 "mus/text_input_client_impl.h", |
| 98 "mus/window_compositor_frame_sink.cc", |
| 99 "mus/window_compositor_frame_sink.h", |
| 90 "mus/window_manager_delegate.cc", | 100 "mus/window_manager_delegate.cc", |
| 91 "mus/window_manager_delegate.h", | 101 "mus/window_manager_delegate.h", |
| 92 "mus/window_mus.h", | 102 "mus/window_mus.h", |
| 93 "mus/window_port_mus.cc", | 103 "mus/window_port_mus.cc", |
| 94 "mus/window_port_mus.h", | 104 "mus/window_port_mus.h", |
| 95 "mus/window_tree_client.cc", | 105 "mus/window_tree_client.cc", |
| 96 "mus/window_tree_client.h", | 106 "mus/window_tree_client.h", |
| 97 "mus/window_tree_client_delegate.cc", | 107 "mus/window_tree_client_delegate.cc", |
| 98 "mus/window_tree_client_delegate.h", | 108 "mus/window_tree_client_delegate.h", |
| 99 "mus/window_tree_client_observer.h", | 109 "mus/window_tree_client_observer.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 127 "window_tree_host_x11.cc", | 137 "window_tree_host_x11.cc", |
| 128 "window_tree_host_x11.h", | 138 "window_tree_host_x11.h", |
| 129 ] | 139 ] |
| 130 | 140 |
| 131 defines = [ "AURA_IMPLEMENTATION" ] | 141 defines = [ "AURA_IMPLEMENTATION" ] |
| 132 | 142 |
| 133 deps = [ | 143 deps = [ |
| 134 "//base", | 144 "//base", |
| 135 "//base:i18n", | 145 "//base:i18n", |
| 136 "//base/third_party/dynamic_annotations", | 146 "//base/third_party/dynamic_annotations", |
| 147 "//cc", |
| 137 "//cc/surfaces:surface_id", | 148 "//cc/surfaces:surface_id", |
| 149 "//gpu/command_buffer/client", |
| 150 "//gpu/ipc/client", |
| 151 "//mojo/public/cpp/system", |
| 138 "//net", | 152 "//net", |
| 139 "//services/service_manager/public/cpp", | 153 "//services/service_manager/public/cpp", |
| 140 "//services/ui/public/interfaces", | 154 "//services/ui/public/interfaces", |
| 141 "//skia", | 155 "//skia", |
| 142 "//ui/base", | 156 "//ui/base", |
| 143 "//ui/base/ime", | 157 "//ui/base/ime", |
| 144 "//ui/compositor", | 158 "//ui/compositor", |
| 145 "//ui/display", | 159 "//ui/display", |
| 146 "//ui/events", | 160 "//ui/events", |
| 147 "//ui/events:events_base", | 161 "//ui/events:events_base", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ] | 352 ] |
| 339 | 353 |
| 340 if (is_linux) { | 354 if (is_linux) { |
| 341 deps += [ "//third_party/mesa" ] | 355 deps += [ "//third_party/mesa" ] |
| 342 } | 356 } |
| 343 | 357 |
| 344 data_deps = [ | 358 data_deps = [ |
| 345 "//third_party/mesa:osmesa", | 359 "//third_party/mesa:osmesa", |
| 346 ] | 360 ] |
| 347 } | 361 } |
| OLD | NEW |