| 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 deps += [ "//ui/gfx/x" ] | 322 deps += [ "//ui/gfx/x" ] |
| 323 } | 323 } |
| 324 } | 324 } |
| 325 | 325 |
| 326 test("aura_unittests") { | 326 test("aura_unittests") { |
| 327 sources = [ | 327 sources = [ |
| 328 "gestures/gesture_recognizer_unittest.cc", | 328 "gestures/gesture_recognizer_unittest.cc", |
| 329 "mus/os_exchange_data_provider_mus_unittest.cc", | 329 "mus/os_exchange_data_provider_mus_unittest.cc", |
| 330 "mus/property_converter_unittest.cc", | 330 "mus/property_converter_unittest.cc", |
| 331 "mus/window_tree_client_unittest.cc", | 331 "mus/window_tree_client_unittest.cc", |
| 332 "mus/window_tree_host_mus_unittest.cc", |
| 332 "test/run_all_unittests.cc", | 333 "test/run_all_unittests.cc", |
| 333 "window_event_dispatcher_unittest.cc", | 334 "window_event_dispatcher_unittest.cc", |
| 334 "window_targeter_unittest.cc", | 335 "window_targeter_unittest.cc", |
| 335 "window_tree_host_unittest.cc", | 336 "window_tree_host_unittest.cc", |
| 336 "window_unittest.cc", | 337 "window_unittest.cc", |
| 337 ] | 338 ] |
| 338 | 339 |
| 339 deps = [ | 340 deps = [ |
| 340 ":test_support", | 341 ":test_support", |
| 341 "//base/test:test_support", | 342 "//base/test:test_support", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 355 ] | 356 ] |
| 356 | 357 |
| 357 if (is_linux) { | 358 if (is_linux) { |
| 358 deps += [ "//third_party/mesa" ] | 359 deps += [ "//third_party/mesa" ] |
| 359 } | 360 } |
| 360 | 361 |
| 361 data_deps = [ | 362 data_deps = [ |
| 362 "//third_party/mesa:osmesa", | 363 "//third_party/mesa:osmesa", |
| 363 ] | 364 ] |
| 364 } | 365 } |
| OLD | NEW |