Chromium Code Reviews| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 320 deps += [ "//ui/gfx/x" ] | 320 deps += [ "//ui/gfx/x" ] |
| 321 } | 321 } |
| 322 } | 322 } |
| 323 | 323 |
| 324 test("aura_unittests") { | 324 test("aura_unittests") { |
| 325 sources = [ | 325 sources = [ |
| 326 "gestures/gesture_recognizer_unittest.cc", | 326 "gestures/gesture_recognizer_unittest.cc", |
| 327 "mus/os_exchange_data_provider_mus_unittest.cc", | 327 "mus/os_exchange_data_provider_mus_unittest.cc", |
| 328 "mus/property_converter_unittest.cc", | 328 "mus/property_converter_unittest.cc", |
| 329 "mus/window_tree_client_unittest.cc", | 329 "mus/window_tree_client_unittest.cc", |
| 330 "mus/window_tree_host_mus_unittest.cc", | |
| 330 "test/run_all_unittests.cc", | 331 "test/run_all_unittests.cc", |
| 331 "window_event_dispatcher_unittest.cc", | 332 "window_event_dispatcher_unittest.cc", |
| 332 "window_targeter_unittest.cc", | 333 "window_targeter_unittest.cc", |
| 333 "window_tree_host_unittest.cc", | 334 "window_tree_host_unittest.cc", |
| 334 "window_unittest.cc", | 335 "window_unittest.cc", |
| 335 ] | 336 ] |
| 336 | 337 |
| 337 deps = [ | 338 deps = [ |
| 338 ":test_support", | 339 ":test_support", |
| 339 "//base/test:test_support", | 340 "//base/test:test_support", |
| 340 "//mojo/common", | 341 "//mojo/common", |
| 341 "//net", | 342 "//net", |
| 342 "//services/ui/public/cpp", | 343 "//services/ui/public/cpp", |
| 343 "//skia", | 344 "//skia", |
| 344 "//testing/gtest", | 345 "//testing/gtest", |
| 345 "//ui/base:test_support", | 346 "//ui/base:test_support", |
| 346 "//ui/compositor:test_support", | 347 "//ui/compositor:test_support", |
| 347 "//ui/display:test_support", | 348 "//ui/display:test_support", |
| 348 "//ui/events:gesture_detection", | 349 "//ui/events:gesture_detection", |
| 349 "//ui/events:test_support", | 350 "//ui/events:test_support", |
| 350 "//ui/gfx", | 351 "//ui/gfx", |
| 351 "//ui/gfx/geometry", | 352 "//ui/gfx/geometry", |
| 352 "//ui/gl:test_support", | 353 "//ui/gl:test_support", |
| 354 "//ui/wm:wm", | |
|
sky
2016/11/19 15:29:31
no need for the ":wm"
Elliot Glaysher
2016/11/22 00:48:07
Deleted line entirely.
| |
| 353 ] | 355 ] |
| 354 | 356 |
| 355 if (is_linux) { | 357 if (is_linux) { |
| 356 deps += [ "//third_party/mesa" ] | 358 deps += [ "//third_party/mesa" ] |
| 357 } | 359 } |
| 358 | 360 |
| 359 data_deps = [ | 361 data_deps = [ |
| 360 "//third_party/mesa:osmesa", | 362 "//third_party/mesa:osmesa", |
| 361 ] | 363 ] |
| 362 } | 364 } |
| OLD | NEW |