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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 sources = [ | 155 sources = [ |
156 "test/aura_test_base.cc", | 156 "test/aura_test_base.cc", |
157 "test/aura_test_base.h", | 157 "test/aura_test_base.h", |
158 "test/aura_test_helper.cc", | 158 "test/aura_test_helper.cc", |
159 "test/aura_test_helper.h", | 159 "test/aura_test_helper.h", |
160 "test/aura_test_utils.cc", | 160 "test/aura_test_utils.cc", |
161 "test/aura_test_utils.h", | 161 "test/aura_test_utils.h", |
162 "test/env_test_helper.h", | 162 "test/env_test_helper.h", |
163 "test/event_generator_delegate_aura.cc", | 163 "test/event_generator_delegate_aura.cc", |
164 "test/event_generator_delegate_aura.h", | 164 "test/event_generator_delegate_aura.h", |
| 165 "test/input_method_glue.cc", |
| 166 "test/input_method_glue.h", |
165 "test/test_cursor_client.cc", | 167 "test/test_cursor_client.cc", |
166 "test/test_cursor_client.h", | 168 "test/test_cursor_client.h", |
167 "test/test_focus_client.cc", | 169 "test/test_focus_client.cc", |
168 "test/test_focus_client.h", | 170 "test/test_focus_client.h", |
169 "test/test_screen.cc", | 171 "test/test_screen.cc", |
170 "test/test_screen.h", | 172 "test/test_screen.h", |
171 "test/test_window_delegate.cc", | 173 "test/test_window_delegate.cc", |
172 "test/test_window_delegate.h", | 174 "test/test_window_delegate.h", |
173 "test/test_window_tree_client.cc", | 175 "test/test_window_tree_client.cc", |
174 "test/test_window_tree_client.h", | 176 "test/test_window_tree_client.h", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 ] | 280 ] |
279 | 281 |
280 if (is_linux) { | 282 if (is_linux) { |
281 deps += [ "//third_party/mesa" ] | 283 deps += [ "//third_party/mesa" ] |
282 } | 284 } |
283 | 285 |
284 data_deps = [ | 286 data_deps = [ |
285 "//third_party/mesa:osmesa", | 287 "//third_party/mesa:osmesa", |
286 ] | 288 ] |
287 } | 289 } |
OLD | NEW |