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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "env.h", | 61 "env.h", |
62 "env_input_state_controller.cc", | 62 "env_input_state_controller.cc", |
63 "env_input_state_controller.h", | 63 "env_input_state_controller.h", |
64 "env_observer.h", | 64 "env_observer.h", |
65 "input_state_lookup.cc", | 65 "input_state_lookup.cc", |
66 "input_state_lookup.h", | 66 "input_state_lookup.h", |
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 "local/compositor_frame_sink_local.cc", |
| 72 "local/compositor_frame_sink_local.h", |
| 73 "local/window_port_local.cc", |
| 74 "local/window_port_local.h", |
71 "mus/capture_synchronizer.cc", | 75 "mus/capture_synchronizer.cc", |
72 "mus/capture_synchronizer.h", | 76 "mus/capture_synchronizer.h", |
73 "mus/capture_synchronizer_delegate.h", | 77 "mus/capture_synchronizer_delegate.h", |
74 "mus/client_surface_embedder.cc", | 78 "mus/client_surface_embedder.cc", |
75 "mus/client_surface_embedder.h", | 79 "mus/client_surface_embedder.h", |
76 "mus/drag_drop_controller_host.h", | 80 "mus/drag_drop_controller_host.h", |
77 "mus/drag_drop_controller_mus.cc", | 81 "mus/drag_drop_controller_mus.cc", |
78 "mus/drag_drop_controller_mus.h", | 82 "mus/drag_drop_controller_mus.h", |
79 "mus/focus_synchronizer.cc", | 83 "mus/focus_synchronizer.cc", |
80 "mus/focus_synchronizer.h", | 84 "mus/focus_synchronizer.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "scoped_window_targeter.h", | 123 "scoped_window_targeter.h", |
120 "window.cc", | 124 "window.cc", |
121 "window.h", | 125 "window.h", |
122 "window_delegate.h", | 126 "window_delegate.h", |
123 "window_event_dispatcher.cc", | 127 "window_event_dispatcher.cc", |
124 "window_event_dispatcher.h", | 128 "window_event_dispatcher.h", |
125 "window_observer.cc", | 129 "window_observer.cc", |
126 "window_observer.h", | 130 "window_observer.h", |
127 "window_port.cc", | 131 "window_port.cc", |
128 "window_port.h", | 132 "window_port.h", |
129 "window_port_local.cc", | |
130 "window_port_local.h", | |
131 "window_targeter.cc", | 133 "window_targeter.cc", |
132 "window_targeter.h", | 134 "window_targeter.h", |
133 "window_tracker.h", | 135 "window_tracker.h", |
134 "window_tree_host.cc", | 136 "window_tree_host.cc", |
135 "window_tree_host.h", | 137 "window_tree_host.h", |
136 "window_tree_host_mac.h", | 138 "window_tree_host_mac.h", |
137 "window_tree_host_mac.mm", | 139 "window_tree_host_mac.mm", |
138 "window_tree_host_observer.h", | 140 "window_tree_host_observer.h", |
139 "window_tree_host_platform.cc", | 141 "window_tree_host_platform.cc", |
140 "window_tree_host_platform.h", | 142 "window_tree_host_platform.h", |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 ] | 383 ] |
382 | 384 |
383 if (is_linux) { | 385 if (is_linux) { |
384 deps += [ "//third_party/mesa" ] | 386 deps += [ "//third_party/mesa" ] |
385 } | 387 } |
386 | 388 |
387 data_deps = [ | 389 data_deps = [ |
388 "//third_party/mesa:osmesa", | 390 "//third_party/mesa:osmesa", |
389 ] | 391 ] |
390 } | 392 } |
OLD | NEW |