| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 deps += [ "//ui/gfx/x" ] | 254 deps += [ "//ui/gfx/x" ] |
| 255 } | 255 } |
| 256 } | 256 } |
| 257 | 257 |
| 258 test("aura_unittests") { | 258 test("aura_unittests") { |
| 259 sources = [ | 259 sources = [ |
| 260 "gestures/gesture_recognizer_unittest.cc", | 260 "gestures/gesture_recognizer_unittest.cc", |
| 261 "test/run_all_unittests.cc", | 261 "test/run_all_unittests.cc", |
| 262 "window_event_dispatcher_unittest.cc", | 262 "window_event_dispatcher_unittest.cc", |
| 263 "window_targeter_unittest.cc", | 263 "window_targeter_unittest.cc", |
| 264 "window_tree_host_unittest.cc", |
| 264 "window_unittest.cc", | 265 "window_unittest.cc", |
| 265 ] | 266 ] |
| 266 | 267 |
| 267 deps = [ | 268 deps = [ |
| 268 ":test_support", | 269 ":test_support", |
| 269 "//base/test:test_support", | 270 "//base/test:test_support", |
| 270 "//skia", | 271 "//skia", |
| 271 "//testing/gtest", | 272 "//testing/gtest", |
| 272 "//ui/base:test_support", | 273 "//ui/base:test_support", |
| 273 "//ui/compositor:test_support", | 274 "//ui/compositor:test_support", |
| 274 "//ui/display:test_support", | 275 "//ui/display:test_support", |
| 275 "//ui/events:gesture_detection", | 276 "//ui/events:gesture_detection", |
| 276 "//ui/events:test_support", | 277 "//ui/events:test_support", |
| 277 "//ui/gfx", | 278 "//ui/gfx", |
| 278 "//ui/gfx/geometry", | 279 "//ui/gfx/geometry", |
| 279 "//ui/gl:test_support", | 280 "//ui/gl:test_support", |
| 280 ] | 281 ] |
| 281 | 282 |
| 282 if (is_linux) { | 283 if (is_linux) { |
| 283 deps += [ "//third_party/mesa" ] | 284 deps += [ "//third_party/mesa" ] |
| 284 } | 285 } |
| 285 | 286 |
| 286 data_deps = [ | 287 data_deps = [ |
| 287 "//third_party/mesa:osmesa", | 288 "//third_party/mesa:osmesa", |
| 288 ] | 289 ] |
| 289 } | 290 } |
| OLD | NEW |