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 "client/aura_constants.cc", | 10 "client/aura_constants.cc", |
(...skipping 17 matching lines...) Expand all Loading... |
28 "client/screen_position_client.h", | 28 "client/screen_position_client.h", |
29 "client/visibility_client.cc", | 29 "client/visibility_client.cc", |
30 "client/visibility_client.h", | 30 "client/visibility_client.h", |
31 "client/window_stacking_client.cc", | 31 "client/window_stacking_client.cc", |
32 "client/window_stacking_client.h", | 32 "client/window_stacking_client.h", |
33 "client/window_tree_client.cc", | 33 "client/window_tree_client.cc", |
34 "client/window_tree_client.h", | 34 "client/window_tree_client.h", |
35 "env.cc", | 35 "env.cc", |
36 "env.h", | 36 "env.h", |
37 "env_observer.h", | 37 "env_observer.h", |
| 38 "image_window_delegate.cc", |
| 39 "image_window_delegate.h", |
38 "input_state_lookup.cc", | 40 "input_state_lookup.cc", |
39 "input_state_lookup.h", | 41 "input_state_lookup.h", |
40 "input_state_lookup_win.cc", | 42 "input_state_lookup_win.cc", |
41 "input_state_lookup_win.h", | 43 "input_state_lookup_win.h", |
42 "layout_manager.cc", | 44 "layout_manager.cc", |
43 "layout_manager.h", | 45 "layout_manager.h", |
44 "remote_window_tree_host_win.cc", | 46 "remote_window_tree_host_win.cc", |
45 "remote_window_tree_host_win.h", | 47 "remote_window_tree_host_win.h", |
46 "scoped_window_targeter.cc", | 48 "scoped_window_targeter.cc", |
47 "scoped_window_targeter.h", | 49 "scoped_window_targeter.h", |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 "//ui/events:gesture_detection", | 290 "//ui/events:gesture_detection", |
289 "//ui/gfx", | 291 "//ui/gfx", |
290 "//ui/gfx/geometry", | 292 "//ui/gfx/geometry", |
291 "//ui/gl", | 293 "//ui/gl", |
292 ] | 294 ] |
293 | 295 |
294 if (is_linux) { | 296 if (is_linux) { |
295 deps += [ "//third_party/mesa" ] | 297 deps += [ "//third_party/mesa" ] |
296 } | 298 } |
297 } | 299 } |
OLD | NEW |