| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 ] | 331 ] |
| 332 | 332 |
| 333 if (use_x11) { | 333 if (use_x11) { |
| 334 deps += [ "//ui/gfx/x" ] | 334 deps += [ "//ui/gfx/x" ] |
| 335 } | 335 } |
| 336 } | 336 } |
| 337 | 337 |
| 338 test("aura_unittests") { | 338 test("aura_unittests") { |
| 339 sources = [ | 339 sources = [ |
| 340 "gestures/gesture_recognizer_unittest.cc", | 340 "gestures/gesture_recognizer_unittest.cc", |
| 341 "mus/input_method_mus_unittest.cc", |
| 341 "mus/os_exchange_data_provider_mus_unittest.cc", | 342 "mus/os_exchange_data_provider_mus_unittest.cc", |
| 342 "mus/property_converter_unittest.cc", | 343 "mus/property_converter_unittest.cc", |
| 343 "mus/user_activity_forwarder_unittest.cc", | 344 "mus/user_activity_forwarder_unittest.cc", |
| 344 "mus/window_tree_client_unittest.cc", | 345 "mus/window_tree_client_unittest.cc", |
| 345 "mus/window_tree_host_mus_unittest.cc", | 346 "mus/window_tree_host_mus_unittest.cc", |
| 346 "test/run_all_unittests.cc", | 347 "test/run_all_unittests.cc", |
| 347 "window_event_dispatcher_unittest.cc", | 348 "window_event_dispatcher_unittest.cc", |
| 348 "window_targeter_unittest.cc", | 349 "window_targeter_unittest.cc", |
| 349 "window_tree_host_unittest.cc", | 350 "window_tree_host_unittest.cc", |
| 350 "window_unittest.cc", | 351 "window_unittest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 371 ] | 372 ] |
| 372 | 373 |
| 373 if (is_linux) { | 374 if (is_linux) { |
| 374 deps += [ "//third_party/mesa" ] | 375 deps += [ "//third_party/mesa" ] |
| 375 } | 376 } |
| 376 | 377 |
| 377 data_deps = [ | 378 data_deps = [ |
| 378 "//third_party/mesa:osmesa", | 379 "//third_party/mesa:osmesa", |
| 379 ] | 380 ] |
| 380 } | 381 } |
| OLD | NEW |