| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "mus/window_mus.h", | 83 "mus/window_mus.h", |
| 84 "mus/window_port_mus.cc", | 84 "mus/window_port_mus.cc", |
| 85 "mus/window_port_mus.h", | 85 "mus/window_port_mus.h", |
| 86 "mus/window_tree_client.cc", | 86 "mus/window_tree_client.cc", |
| 87 "mus/window_tree_client.h", | 87 "mus/window_tree_client.h", |
| 88 "mus/window_tree_client_delegate.cc", | 88 "mus/window_tree_client_delegate.cc", |
| 89 "mus/window_tree_client_delegate.h", | 89 "mus/window_tree_client_delegate.h", |
| 90 "mus/window_tree_client_observer.h", | 90 "mus/window_tree_client_observer.h", |
| 91 "mus/window_tree_host_mus.cc", | 91 "mus/window_tree_host_mus.cc", |
| 92 "mus/window_tree_host_mus.h", | 92 "mus/window_tree_host_mus.h", |
| 93 "mus/window_tree_host_mus_delegate.h", |
| 93 "scoped_window_targeter.cc", | 94 "scoped_window_targeter.cc", |
| 94 "scoped_window_targeter.h", | 95 "scoped_window_targeter.h", |
| 95 "window.cc", | 96 "window.cc", |
| 96 "window.h", | 97 "window.h", |
| 97 "window_delegate.cc", | 98 "window_delegate.cc", |
| 98 "window_delegate.h", | 99 "window_delegate.h", |
| 99 "window_event_dispatcher.cc", | 100 "window_event_dispatcher.cc", |
| 100 "window_event_dispatcher.h", | 101 "window_event_dispatcher.h", |
| 101 "window_observer.cc", | 102 "window_observer.cc", |
| 102 "window_observer.h", | 103 "window_observer.h", |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 ] | 326 ] |
| 326 | 327 |
| 327 if (is_linux) { | 328 if (is_linux) { |
| 328 deps += [ "//third_party/mesa" ] | 329 deps += [ "//third_party/mesa" ] |
| 329 } | 330 } |
| 330 | 331 |
| 331 data_deps = [ | 332 data_deps = [ |
| 332 "//third_party/mesa:osmesa", | 333 "//third_party/mesa:osmesa", |
| 333 ] | 334 ] |
| 334 } | 335 } |
| OLD | NEW |