| 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 "client_native_pixmap_factory_test.cc", | |
| 8 "client_native_pixmap_factory_test.h", | |
| 9 "ozone_platform_test.cc", | |
| 10 "ozone_platform_test.h", | |
| 11 "test_surface_factory.cc", | |
| 12 "test_surface_factory.h", | |
| 13 "test_window.cc", | |
| 14 "test_window.h", | |
| 15 "test_window_manager.cc", | |
| 16 "test_window_manager.h", | |
| 17 ] | |
| 18 | |
| 19 deps = [ | |
| 20 "//base", | |
| 21 "//skia", | |
| 22 "//ui/base", | |
| 23 "//ui/gfx/geometry", | |
| 24 "//ui/events/ozone:events_ozone_layout", | |
| 25 "//ui/events/platform", | |
| 26 ] | |
| 27 } | |
| OLD | NEW |