| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "mus/window_tree_client_delegate.cc", | 107 "mus/window_tree_client_delegate.cc", |
| 108 "mus/window_tree_client_delegate.h", | 108 "mus/window_tree_client_delegate.h", |
| 109 "mus/window_tree_client_observer.h", | 109 "mus/window_tree_client_observer.h", |
| 110 "mus/window_tree_host_mus.cc", | 110 "mus/window_tree_host_mus.cc", |
| 111 "mus/window_tree_host_mus.h", | 111 "mus/window_tree_host_mus.h", |
| 112 "mus/window_tree_host_mus_delegate.h", | 112 "mus/window_tree_host_mus_delegate.h", |
| 113 "scoped_window_targeter.cc", | 113 "scoped_window_targeter.cc", |
| 114 "scoped_window_targeter.h", | 114 "scoped_window_targeter.h", |
| 115 "window.cc", | 115 "window.cc", |
| 116 "window.h", | 116 "window.h", |
| 117 "window_delegate.cc", | |
| 118 "window_delegate.h", | 117 "window_delegate.h", |
| 119 "window_event_dispatcher.cc", | 118 "window_event_dispatcher.cc", |
| 120 "window_event_dispatcher.h", | 119 "window_event_dispatcher.h", |
| 121 "window_observer.cc", | 120 "window_observer.cc", |
| 122 "window_observer.h", | 121 "window_observer.h", |
| 123 "window_port.cc", | 122 "window_port.cc", |
| 124 "window_port.h", | 123 "window_port.h", |
| 125 "window_port_local.cc", | 124 "window_port_local.cc", |
| 126 "window_port_local.h", | 125 "window_port_local.h", |
| 127 "window_targeter.cc", | 126 "window_targeter.cc", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ] | 362 ] |
| 364 | 363 |
| 365 if (is_linux) { | 364 if (is_linux) { |
| 366 deps += [ "//third_party/mesa" ] | 365 deps += [ "//third_party/mesa" ] |
| 367 } | 366 } |
| 368 | 367 |
| 369 data_deps = [ | 368 data_deps = [ |
| 370 "//third_party/mesa:osmesa", | 369 "//third_party/mesa:osmesa", |
| 371 ] | 370 ] |
| 372 } | 371 } |
| OLD | NEW |