mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
37 lines
941 B
Plaintext
37 lines
941 B
Plaintext
# Copyright 2014 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
visibility = [ "//ui/ozone/*" ]
|
|
|
|
source_set("headless") {
|
|
sources = [
|
|
"client_native_pixmap_factory_headless.cc",
|
|
"client_native_pixmap_factory_headless.h",
|
|
"gl_surface_osmesa_png.cc",
|
|
"gl_surface_osmesa_png.h",
|
|
"headless_surface_factory.cc",
|
|
"headless_surface_factory.h",
|
|
"headless_window.cc",
|
|
"headless_window.h",
|
|
"headless_window_manager.cc",
|
|
"headless_window_manager.h",
|
|
"ozone_platform_headless.cc",
|
|
"ozone_platform_headless.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//skia",
|
|
"//ui/base",
|
|
"//ui/display/manager",
|
|
"//ui/events",
|
|
"//ui/events/ozone:events_ozone_layout",
|
|
"//ui/events/platform",
|
|
"//ui/gfx/geometry",
|
|
"//ui/ozone:ozone_base",
|
|
"//ui/ozone/common",
|
|
"//ui/platform_window",
|
|
]
|
|
}
|