| 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", |
| 11 "../wm/public/activation_change_observer.h", | 11 "../wm/public/activation_change_observer.h", |
| 12 "../wm/public/activation_client.cc", | 12 "../wm/public/activation_client.cc", |
| 13 "../wm/public/activation_client.h", | 13 "../wm/public/activation_client.h", |
| 14 "../wm/public/activation_delegate.cc", | 14 "../wm/public/activation_delegate.cc", |
| 15 "../wm/public/activation_delegate.h", | 15 "../wm/public/activation_delegate.h", |
| 16 "../wm/public/animation_host.cc", | 16 "../wm/public/animation_host.cc", |
| 17 "../wm/public/animation_host.h", | 17 "../wm/public/animation_host.h", |
| 18 "../wm/public/dispatcher_client.cc", | |
| 19 "../wm/public/dispatcher_client.h", | |
| 20 "../wm/public/drag_drop_client.cc", | 18 "../wm/public/drag_drop_client.cc", |
| 21 "../wm/public/drag_drop_client.h", | 19 "../wm/public/drag_drop_client.h", |
| 22 "../wm/public/drag_drop_delegate.cc", | 20 "../wm/public/drag_drop_delegate.cc", |
| 23 "../wm/public/drag_drop_delegate.h", | 21 "../wm/public/drag_drop_delegate.h", |
| 24 "../wm/public/scoped_drag_drop_disabler.cc", | 22 "../wm/public/scoped_drag_drop_disabler.cc", |
| 25 "../wm/public/scoped_drag_drop_disabler.h", | 23 "../wm/public/scoped_drag_drop_disabler.h", |
| 26 "../wm/public/scoped_tooltip_disabler.cc", | 24 "../wm/public/scoped_tooltip_disabler.cc", |
| 27 "../wm/public/scoped_tooltip_disabler.h", | 25 "../wm/public/scoped_tooltip_disabler.h", |
| 28 "../wm/public/tooltip_client.cc", | 26 "../wm/public/tooltip_client.cc", |
| 29 "../wm/public/tooltip_client.h", | 27 "../wm/public/tooltip_client.h", |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 ] | 313 ] |
| 316 | 314 |
| 317 if (is_linux) { | 315 if (is_linux) { |
| 318 deps += [ "//third_party/mesa" ] | 316 deps += [ "//third_party/mesa" ] |
| 319 } | 317 } |
| 320 | 318 |
| 321 data_deps = [ | 319 data_deps = [ |
| 322 "//third_party/mesa:osmesa", | 320 "//third_party/mesa:osmesa", |
| 323 ] | 321 ] |
| 324 } | 322 } |
| OLD | NEW |