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 16 matching lines...) Expand all Loading... |
27 "../wm/public/tooltip_client.h", | 27 "../wm/public/tooltip_client.h", |
28 "../wm/public/transient_window_client.cc", | 28 "../wm/public/transient_window_client.cc", |
29 "../wm/public/transient_window_client.h", | 29 "../wm/public/transient_window_client.h", |
30 "../wm/public/window_move_client.cc", | 30 "../wm/public/window_move_client.cc", |
31 "../wm/public/window_move_client.h", | 31 "../wm/public/window_move_client.h", |
32 "../wm/public/window_types.h", | 32 "../wm/public/window_types.h", |
33 "client/aura_constants.cc", | 33 "client/aura_constants.cc", |
34 "client/aura_constants.h", | 34 "client/aura_constants.h", |
35 "client/capture_client.cc", | 35 "client/capture_client.cc", |
36 "client/capture_client.h", | 36 "client/capture_client.h", |
| 37 "client/capture_client_observer.h", |
37 "client/capture_delegate.h", | 38 "client/capture_delegate.h", |
38 "client/cursor_client.cc", | 39 "client/cursor_client.cc", |
39 "client/cursor_client.h", | 40 "client/cursor_client.h", |
40 "client/cursor_client_observer.cc", | 41 "client/cursor_client_observer.cc", |
41 "client/cursor_client_observer.h", | 42 "client/cursor_client_observer.h", |
42 "client/default_capture_client.cc", | 43 "client/default_capture_client.cc", |
43 "client/default_capture_client.h", | 44 "client/default_capture_client.h", |
44 "client/event_client.cc", | 45 "client/event_client.cc", |
45 "client/event_client.h", | 46 "client/event_client.h", |
46 "client/focus_change_observer.cc", | 47 "client/focus_change_observer.cc", |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 ] | 283 ] |
283 | 284 |
284 if (is_linux) { | 285 if (is_linux) { |
285 deps += [ "//third_party/mesa" ] | 286 deps += [ "//third_party/mesa" ] |
286 } | 287 } |
287 | 288 |
288 data_deps = [ | 289 data_deps = [ |
289 "//third_party/mesa:osmesa", | 290 "//third_party/mesa:osmesa", |
290 ] | 291 ] |
291 } | 292 } |
OLD | NEW |