OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("test") { |
| 6 sources = [ |
| 7 "ozone_platform_test.cc", |
| 8 "ozone_platform_test.h", |
| 9 "test_cursor_factory.cc", |
| 10 "test_cursor_factory.h", |
| 11 "test_window.cc", |
| 12 "test_window.h", |
| 13 "test_window_manager.cc", |
| 14 "test_window_manager.h", |
| 15 ] |
| 16 |
| 17 deps = [ |
| 18 "//base", |
| 19 "//skia", |
| 20 "//ui/base", |
| 21 "//ui/events/ozone:events_ozone_evdev", |
| 22 "//ui/gfx/geometry", |
| 23 ] |
| 24 } |
OLD | NEW |