| 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 source_set("headless") { | 5 source_set("headless") { |
| 6 sources = [ | 6 sources = [ |
| 7 "client_native_pixmap_factory_headless.cc", | 7 "client_native_pixmap_factory_headless.cc", |
| 8 "client_native_pixmap_factory_headless.h", | 8 "client_native_pixmap_factory_headless.h", |
| 9 "headless_surface_factory.cc", | 9 "headless_surface_factory.cc", |
| 10 "headless_surface_factory.h", | 10 "headless_surface_factory.h", |
| 11 "headless_window.cc", | 11 "headless_window.cc", |
| 12 "headless_window.h", | 12 "headless_window.h", |
| 13 "headless_window_manager.cc", | 13 "headless_window_manager.cc", |
| 14 "headless_window_manager.h", | 14 "headless_window_manager.h", |
| 15 "ozone_platform_headless.cc", | 15 "ozone_platform_headless.cc", |
| 16 "ozone_platform_headless.h", | 16 "ozone_platform_headless.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//skia", | 21 "//skia", |
| 22 "//ui/base", | 22 "//ui/base", |
| 23 "//ui/gfx/geometry", | |
| 24 "//ui/events/ozone:events_ozone_layout", | 23 "//ui/events/ozone:events_ozone_layout", |
| 25 "//ui/events/platform", | 24 "//ui/events/platform", |
| 25 "//ui/gfx/geometry", |
| 26 ] | 26 ] |
| 27 } | 27 } |
| OLD | NEW |