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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "client/event_client.cc", | 44 "client/event_client.cc", |
45 "client/event_client.h", | 45 "client/event_client.h", |
46 "client/focus_change_observer.cc", | 46 "client/focus_change_observer.cc", |
47 "client/focus_change_observer.h", | 47 "client/focus_change_observer.h", |
48 "client/focus_client.cc", | 48 "client/focus_client.cc", |
49 "client/focus_client.h", | 49 "client/focus_client.h", |
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_parenting_client.cc", |
| 55 "client/window_parenting_client.h", |
54 "client/window_stacking_client.cc", | 56 "client/window_stacking_client.cc", |
55 "client/window_stacking_client.h", | 57 "client/window_stacking_client.h", |
56 "client/window_tree_client.cc", | |
57 "client/window_tree_client.h", | |
58 "env.cc", | 58 "env.cc", |
59 "env.h", | 59 "env.h", |
60 "env_input_state_controller.cc", | 60 "env_input_state_controller.cc", |
61 "env_input_state_controller.h", | 61 "env_input_state_controller.h", |
62 "env_observer.h", | 62 "env_observer.h", |
63 "input_state_lookup.cc", | 63 "input_state_lookup.cc", |
64 "input_state_lookup.h", | 64 "input_state_lookup.h", |
65 "input_state_lookup_win.cc", | 65 "input_state_lookup_win.cc", |
66 "input_state_lookup_win.h", | 66 "input_state_lookup_win.h", |
67 "layout_manager.cc", | 67 "layout_manager.cc", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "test/input_method_glue.cc", | 165 "test/input_method_glue.cc", |
166 "test/input_method_glue.h", | 166 "test/input_method_glue.h", |
167 "test/test_cursor_client.cc", | 167 "test/test_cursor_client.cc", |
168 "test/test_cursor_client.h", | 168 "test/test_cursor_client.h", |
169 "test/test_focus_client.cc", | 169 "test/test_focus_client.cc", |
170 "test/test_focus_client.h", | 170 "test/test_focus_client.h", |
171 "test/test_screen.cc", | 171 "test/test_screen.cc", |
172 "test/test_screen.h", | 172 "test/test_screen.h", |
173 "test/test_window_delegate.cc", | 173 "test/test_window_delegate.cc", |
174 "test/test_window_delegate.h", | 174 "test/test_window_delegate.h", |
175 "test/test_window_tree_client.cc", | 175 "test/test_window_parenting_client.cc", |
176 "test/test_window_tree_client.h", | 176 "test/test_window_parenting_client.h", |
177 "test/test_windows.cc", | 177 "test/test_windows.cc", |
178 "test/test_windows.h", | 178 "test/test_windows.h", |
179 "test/ui_controls_factory_aura.h", | 179 "test/ui_controls_factory_aura.h", |
180 "test/window_event_dispatcher_test_api.cc", | 180 "test/window_event_dispatcher_test_api.cc", |
181 "test/window_event_dispatcher_test_api.h", | 181 "test/window_event_dispatcher_test_api.h", |
182 "test/window_test_api.cc", | 182 "test/window_test_api.cc", |
183 "test/window_test_api.h", | 183 "test/window_test_api.h", |
184 ] | 184 ] |
185 | 185 |
186 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 186 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 ] | 282 ] |
283 | 283 |
284 if (is_linux) { | 284 if (is_linux) { |
285 deps += [ "//third_party/mesa" ] | 285 deps += [ "//third_party/mesa" ] |
286 } | 286 } |
287 | 287 |
288 data_deps = [ | 288 data_deps = [ |
289 "//third_party/mesa:osmesa", | 289 "//third_party/mesa:osmesa", |
290 ] | 290 ] |
291 } | 291 } |
OLD | NEW |