| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "mus/window_mus.h", | 86 "mus/window_mus.h", |
| 87 "mus/window_port_mus.cc", | 87 "mus/window_port_mus.cc", |
| 88 "mus/window_port_mus.h", | 88 "mus/window_port_mus.h", |
| 89 "mus/window_tree_client.cc", | 89 "mus/window_tree_client.cc", |
| 90 "mus/window_tree_client.h", | 90 "mus/window_tree_client.h", |
| 91 "mus/window_tree_client_delegate.cc", | 91 "mus/window_tree_client_delegate.cc", |
| 92 "mus/window_tree_client_delegate.h", | 92 "mus/window_tree_client_delegate.h", |
| 93 "mus/window_tree_client_observer.h", | 93 "mus/window_tree_client_observer.h", |
| 94 "mus/window_tree_host_mus.cc", | 94 "mus/window_tree_host_mus.cc", |
| 95 "mus/window_tree_host_mus.h", | 95 "mus/window_tree_host_mus.h", |
| 96 "mus/window_tree_host_mus_delegate.h", |
| 96 "scoped_window_targeter.cc", | 97 "scoped_window_targeter.cc", |
| 97 "scoped_window_targeter.h", | 98 "scoped_window_targeter.h", |
| 98 "window.cc", | 99 "window.cc", |
| 99 "window.h", | 100 "window.h", |
| 100 "window_delegate.cc", | 101 "window_delegate.cc", |
| 101 "window_delegate.h", | 102 "window_delegate.h", |
| 102 "window_event_dispatcher.cc", | 103 "window_event_dispatcher.cc", |
| 103 "window_event_dispatcher.h", | 104 "window_event_dispatcher.h", |
| 104 "window_observer.cc", | 105 "window_observer.cc", |
| 105 "window_observer.h", | 106 "window_observer.h", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 ] | 332 ] |
| 332 | 333 |
| 333 if (is_linux) { | 334 if (is_linux) { |
| 334 deps += [ "//third_party/mesa" ] | 335 deps += [ "//third_party/mesa" ] |
| 335 } | 336 } |
| 336 | 337 |
| 337 data_deps = [ | 338 data_deps = [ |
| 338 "//third_party/mesa:osmesa", | 339 "//third_party/mesa:osmesa", |
| 339 ] | 340 ] |
| 340 } | 341 } |
| OLD | NEW |