| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "test/aura_test_utils.cc", | 230 "test/aura_test_utils.cc", |
| 231 "test/aura_test_utils.h", | 231 "test/aura_test_utils.h", |
| 232 "test/env_test_helper.h", | 232 "test/env_test_helper.h", |
| 233 "test/event_generator_delegate_aura.cc", | 233 "test/event_generator_delegate_aura.cc", |
| 234 "test/event_generator_delegate_aura.h", | 234 "test/event_generator_delegate_aura.h", |
| 235 "test/input_method_glue.cc", | 235 "test/input_method_glue.cc", |
| 236 "test/input_method_glue.h", | 236 "test/input_method_glue.h", |
| 237 "test/mus/change_completion_waiter.cc", | 237 "test/mus/change_completion_waiter.cc", |
| 238 "test/mus/change_completion_waiter.h", | 238 "test/mus/change_completion_waiter.h", |
| 239 "test/mus/input_method_mus_test_api.h", | 239 "test/mus/input_method_mus_test_api.h", |
| 240 "test/mus/test_context_factory.cc", |
| 241 "test/mus/test_context_factory.h", |
| 240 "test/mus/test_window_tree.cc", | 242 "test/mus/test_window_tree.cc", |
| 241 "test/mus/test_window_tree.h", | 243 "test/mus/test_window_tree.h", |
| 242 "test/mus/test_window_tree_client_setup.cc", | 244 "test/mus/test_window_tree_client_setup.cc", |
| 243 "test/mus/test_window_tree_client_setup.h", | 245 "test/mus/test_window_tree_client_setup.h", |
| 244 "test/mus/window_tree_client_private.cc", | 246 "test/mus/window_tree_client_private.cc", |
| 245 "test/mus/window_tree_client_private.h", | 247 "test/mus/window_tree_client_private.h", |
| 246 "test/test_cursor_client.cc", | 248 "test/test_cursor_client.cc", |
| 247 "test/test_cursor_client.h", | 249 "test/test_cursor_client.h", |
| 248 "test/test_focus_client.cc", | 250 "test/test_focus_client.cc", |
| 249 "test/test_focus_client.h", | 251 "test/test_focus_client.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 262 "test/window_event_dispatcher_test_api.h", | 264 "test/window_event_dispatcher_test_api.h", |
| 263 "test/window_test_api.cc", | 265 "test/window_test_api.cc", |
| 264 "test/window_test_api.h", | 266 "test/window_test_api.h", |
| 265 ] | 267 ] |
| 266 | 268 |
| 267 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 269 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 268 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 270 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 269 | 271 |
| 270 public_deps = [ | 272 public_deps = [ |
| 271 ":aura", | 273 ":aura", |
| 274 "//cc:test_support", |
| 272 ] | 275 ] |
| 273 deps = [ | 276 deps = [ |
| 274 "//services/ui/public/interfaces", | 277 "//services/ui/public/interfaces", |
| 275 "//skia", | 278 "//skia", |
| 276 "//testing/gtest", | 279 "//testing/gtest", |
| 277 "//ui/base:test_support", | 280 "//ui/base:test_support", |
| 278 "//ui/base/ime", | 281 "//ui/base/ime", |
| 279 "//ui/compositor:test_support", | 282 "//ui/compositor:test_support", |
| 280 "//ui/display", | 283 "//ui/display", |
| 281 "//ui/events", | 284 "//ui/events", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 ] | 378 ] |
| 376 | 379 |
| 377 if (is_linux) { | 380 if (is_linux) { |
| 378 deps += [ "//third_party/mesa" ] | 381 deps += [ "//third_party/mesa" ] |
| 379 } | 382 } |
| 380 | 383 |
| 381 data_deps = [ | 384 data_deps = [ |
| 382 "//third_party/mesa:osmesa", | 385 "//third_party/mesa:osmesa", |
| 383 ] | 386 ] |
| 384 } | 387 } |
| OLD | NEW |