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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "client/screen_position_client.cc", | 50 "client/screen_position_client.cc", |
51 "client/screen_position_client.h", | 51 "client/screen_position_client.h", |
52 "client/visibility_client.cc", | 52 "client/visibility_client.cc", |
53 "client/visibility_client.h", | 53 "client/visibility_client.h", |
54 "client/window_stacking_client.cc", | 54 "client/window_stacking_client.cc", |
55 "client/window_stacking_client.h", | 55 "client/window_stacking_client.h", |
56 "client/window_tree_client.cc", | 56 "client/window_tree_client.cc", |
57 "client/window_tree_client.h", | 57 "client/window_tree_client.h", |
58 "env.cc", | 58 "env.cc", |
59 "env.h", | 59 "env.h", |
| 60 "env_input_state_controller.cc", |
| 61 "env_input_state_controller.h", |
60 "env_observer.h", | 62 "env_observer.h", |
61 "input_state_lookup.cc", | 63 "input_state_lookup.cc", |
62 "input_state_lookup.h", | 64 "input_state_lookup.h", |
63 "input_state_lookup_win.cc", | 65 "input_state_lookup_win.cc", |
64 "input_state_lookup_win.h", | 66 "input_state_lookup_win.h", |
65 "layout_manager.cc", | 67 "layout_manager.cc", |
66 "layout_manager.h", | 68 "layout_manager.h", |
67 "mus/mus_util.cc", | 69 "mus/mus_util.cc", |
68 "mus/mus_util.h", | 70 "mus/mus_util.h", |
69 "scoped_window_targeter.cc", | 71 "scoped_window_targeter.cc", |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 ] | 278 ] |
277 | 279 |
278 if (is_linux) { | 280 if (is_linux) { |
279 deps += [ "//third_party/mesa" ] | 281 deps += [ "//third_party/mesa" ] |
280 } | 282 } |
281 | 283 |
282 data_deps = [ | 284 data_deps = [ |
283 "//third_party/mesa:osmesa", | 285 "//third_party/mesa:osmesa", |
284 ] | 286 ] |
285 } | 287 } |
OLD | NEW |