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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "mus/window_port_mus.h", | 106 "mus/window_port_mus.h", |
107 "mus/window_tree_client.cc", | 107 "mus/window_tree_client.cc", |
108 "mus/window_tree_client.h", | 108 "mus/window_tree_client.h", |
109 "mus/window_tree_client_delegate.cc", | 109 "mus/window_tree_client_delegate.cc", |
110 "mus/window_tree_client_delegate.h", | 110 "mus/window_tree_client_delegate.h", |
111 "mus/window_tree_client_observer.h", | 111 "mus/window_tree_client_observer.h", |
112 "mus/window_tree_client_test_observer.h", | 112 "mus/window_tree_client_test_observer.h", |
113 "mus/window_tree_host_mus.cc", | 113 "mus/window_tree_host_mus.cc", |
114 "mus/window_tree_host_mus.h", | 114 "mus/window_tree_host_mus.h", |
115 "mus/window_tree_host_mus_delegate.h", | 115 "mus/window_tree_host_mus_delegate.h", |
| 116 "mus/window_tree_host_mus_init_params.cc", |
| 117 "mus/window_tree_host_mus_init_params.h", |
116 "scoped_window_targeter.cc", | 118 "scoped_window_targeter.cc", |
117 "scoped_window_targeter.h", | 119 "scoped_window_targeter.h", |
118 "window.cc", | 120 "window.cc", |
119 "window.h", | 121 "window.h", |
120 "window_delegate.h", | 122 "window_delegate.h", |
121 "window_event_dispatcher.cc", | 123 "window_event_dispatcher.cc", |
122 "window_event_dispatcher.h", | 124 "window_event_dispatcher.h", |
123 "window_observer.cc", | 125 "window_observer.cc", |
124 "window_observer.h", | 126 "window_observer.h", |
125 "window_port.cc", | 127 "window_port.cc", |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 ] | 378 ] |
377 | 379 |
378 if (is_linux) { | 380 if (is_linux) { |
379 deps += [ "//third_party/mesa" ] | 381 deps += [ "//third_party/mesa" ] |
380 } | 382 } |
381 | 383 |
382 data_deps = [ | 384 data_deps = [ |
383 "//third_party/mesa:osmesa", | 385 "//third_party/mesa:osmesa", |
384 ] | 386 ] |
385 } | 387 } |
OLD | NEW |