1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# 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.
import("//build/config/ui.gni")
# This is the public target. It contains only the public headers. The
# implementation (and private haders) are in 'internal'.
source_set("cpp") {
sources = [
"property_type_converters.h",
"raster_thread_helper.h",
"window_compositor_frame_sink.h",
]
public_deps = [
"//base",
"//cc",
"//cc/surfaces",
"//cc/surfaces:surface_id",
"//mojo/public/cpp/bindings",
"//services/service_manager/public/interfaces",
"//services/ui/common:mus_common",
"//services/ui/public/cpp/gpu",
"//services/ui/public/interfaces",
]
deps = [
":internal",
"//gpu/command_buffer/client:gles2_cmd_helper",
"//gpu/command_buffer/client:gles2_interface",
"//services/service_manager/public/cpp",
"//services/ui/public/interfaces",
"//ui/display",
"//ui/events",
"//ui/gfx/geometry",
]
data_deps = [
"//services/ui",
]
if (use_qt) {
data_deps -= [
"//services/ui",
]
}
defines = [ "GL_GLEXT_PROTOTYPES" ]
allow_circular_includes_from = [ ":internal" ]
}
source_set("internal") {
# This target is an implementation detail and is intended only to be used by
# the 'cpp' target.
visibility = [
":cpp",
"//services/ui/demo:lib",
]
sources = [
"property_type_converters.cc",
"raster_thread_helper.cc",
"window_compositor_frame_sink.cc",
]
deps = [
"//base",
"//cc",
"//cc/surfaces",
"//cc/surfaces:surface_id",
"//mojo/public/cpp/bindings",
"//services/service_manager/public/cpp",
"//services/service_manager/public/interfaces",
"//services/ui/common:mus_common",
"//services/ui/public/cpp/gpu",
"//services/ui/public/interfaces",
"//skia/public/interfaces",
"//ui/display",
"//ui/events",
"//ui/gfx/geometry",
]
data_deps = [
"//services/ui",
]
if (use_qt) {
data_deps -= [
"//services/ui",
]
}
defines = [ "GL_GLEXT_PROTOTYPES" ]
if (use_ozone) {
deps += [ "//ui/ozone" ]
}
}
|