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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "mus/mus_util.h", | 71 "mus/mus_util.h", |
72 "scoped_window_targeter.cc", | 72 "scoped_window_targeter.cc", |
73 "scoped_window_targeter.h", | 73 "scoped_window_targeter.h", |
74 "window.cc", | 74 "window.cc", |
75 "window.h", | 75 "window.h", |
76 "window_delegate.h", | 76 "window_delegate.h", |
77 "window_event_dispatcher.cc", | 77 "window_event_dispatcher.cc", |
78 "window_event_dispatcher.h", | 78 "window_event_dispatcher.h", |
79 "window_observer.cc", | 79 "window_observer.cc", |
80 "window_observer.h", | 80 "window_observer.h", |
| 81 "window_port.cc", |
| 82 "window_port.h", |
| 83 "window_port_local.cc", |
| 84 "window_port_local.h", |
81 "window_targeter.cc", | 85 "window_targeter.cc", |
82 "window_targeter.h", | 86 "window_targeter.h", |
83 "window_tracker.h", | 87 "window_tracker.h", |
84 "window_tree_host.cc", | 88 "window_tree_host.cc", |
85 "window_tree_host.h", | 89 "window_tree_host.h", |
86 "window_tree_host_mac.h", | 90 "window_tree_host_mac.h", |
87 "window_tree_host_mac.mm", | 91 "window_tree_host_mac.mm", |
88 "window_tree_host_observer.h", | 92 "window_tree_host_observer.h", |
89 "window_tree_host_platform.cc", | 93 "window_tree_host_platform.cc", |
90 "window_tree_host_platform.h", | 94 "window_tree_host_platform.h", |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 ] | 287 ] |
284 | 288 |
285 if (is_linux) { | 289 if (is_linux) { |
286 deps += [ "//third_party/mesa" ] | 290 deps += [ "//third_party/mesa" ] |
287 } | 291 } |
288 | 292 |
289 data_deps = [ | 293 data_deps = [ |
290 "//third_party/mesa:osmesa", | 294 "//third_party/mesa:osmesa", |
291 ] | 295 ] |
292 } | 296 } |
OLD | NEW |