mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 15:00:05 +01:00
31 lines
441 B
Text
31 lines
441 B
Text
|
|
digraph stack
|
||
|
|
{
|
||
|
|
compound=true;
|
||
|
|
rankdir="LR";
|
||
|
|
node [
|
||
|
|
shape="box";
|
||
|
|
]
|
||
|
|
|
||
|
|
gcc -> gsettings
|
||
|
|
|
||
|
|
xf86libinput -> libinput
|
||
|
|
|
||
|
|
subgraph cluster0 {
|
||
|
|
label="X.Org";
|
||
|
|
xf86libinput [label="xf86-input-libinput"];
|
||
|
|
xserver [label="X Server"];
|
||
|
|
xserver -> xf86libinput;
|
||
|
|
}
|
||
|
|
|
||
|
|
gcc [label="gnome-control-center"];
|
||
|
|
|
||
|
|
subgraph cluster3 {
|
||
|
|
gsettings
|
||
|
|
}
|
||
|
|
|
||
|
|
gsd [label="gnome-settings-daemon"];
|
||
|
|
|
||
|
|
gsd -> gsettings
|
||
|
|
gsd -> xserver
|
||
|
|
}
|