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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "layout_manager.h", | 66 "layout_manager.h", |
67 "mus/mus_util.cc", | 67 "mus/mus_util.cc", |
68 "mus/mus_util.h", | 68 "mus/mus_util.h", |
69 "scoped_window_targeter.cc", | 69 "scoped_window_targeter.cc", |
70 "scoped_window_targeter.h", | 70 "scoped_window_targeter.h", |
71 "window.cc", | 71 "window.cc", |
72 "window.h", | 72 "window.h", |
73 "window_delegate.h", | 73 "window_delegate.h", |
74 "window_event_dispatcher.cc", | 74 "window_event_dispatcher.cc", |
75 "window_event_dispatcher.h", | 75 "window_event_dispatcher.h", |
| 76 "window_event_dispatcher_delegate.cc", |
| 77 "window_event_dispatcher_delegate.h", |
76 "window_observer.cc", | 78 "window_observer.cc", |
77 "window_observer.h", | 79 "window_observer.h", |
78 "window_targeter.cc", | 80 "window_targeter.cc", |
79 "window_targeter.h", | 81 "window_targeter.h", |
80 "window_tracker.h", | 82 "window_tracker.h", |
81 "window_tree_host.cc", | 83 "window_tree_host.cc", |
82 "window_tree_host.h", | 84 "window_tree_host.h", |
83 "window_tree_host_mac.h", | 85 "window_tree_host_mac.h", |
84 "window_tree_host_mac.mm", | 86 "window_tree_host_mac.mm", |
85 "window_tree_host_observer.h", | 87 "window_tree_host_observer.h", |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 ] | 278 ] |
277 | 279 |
278 if (is_linux) { | 280 if (is_linux) { |
279 deps += [ "//third_party/mesa" ] | 281 deps += [ "//third_party/mesa" ] |
280 } | 282 } |
281 | 283 |
282 data_deps = [ | 284 data_deps = [ |
283 "//third_party/mesa:osmesa", | 285 "//third_party/mesa:osmesa", |
284 ] | 286 ] |
285 } | 287 } |
OLD | NEW |