blob: 1f1af57cc8fce32723a63f7ec72ef648744c3239 [file] [log] [blame] [edit]
# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
project('sommelier', 'c', 'cpp',
default_options : ['cpp_std=c++17'])
#===============#
# Configuration #
#===============#
includes = []
cpp_args = []
#===============#
# Wayland Stuff #
#===============#
wl_scanner = find_program('wayland-scanner')
wl_generators = [
generator(
wl_scanner,
output: '@BASENAME@-code.c',
arguments: ['private-code', '@INPUT@', '@OUTPUT@']
),
generator(
wl_scanner,
output: '@BASENAME@-client-protocol.h',
arguments: ['client-header', '@INPUT@', '@OUTPUT@']
),
generator(
wl_scanner,
output: '@BASENAME@-server-protocol.h',
arguments: ['server-header', '@INPUT@', '@OUTPUT@']
),
]
wl_protocols = [
'protocol/aura-shell.xml',
'protocol/drm.xml',
'protocol/gaming-input-unstable-v2.xml',
'protocol/gtk-shell.xml',
'protocol/keyboard-extension-unstable-v1.xml',
'protocol/linux-dmabuf-unstable-v1.xml',
'protocol/linux-explicit-synchronization-unstable-v1.xml',
'protocol/pointer-constraints-unstable-v1.xml',
'protocol/relative-pointer-unstable-v1.xml',
'protocol/text-input-unstable-v1.xml',
'protocol/text-input-extension-unstable-v1.xml',
'protocol/text-input-x11-unstable-v1.xml',
'protocol/viewporter.xml',
'protocol/xdg-output-unstable-v1.xml',
'protocol/xdg-shell.xml',
]
wl_outs = []
foreach p : wl_protocols
foreach g : wl_generators
wl_outs += g.process(p)
endforeach
endforeach
#===============#
# Codegen Shims #
#===============#
# Ensure jinja2 exists within the python3 install.
if run_command(
'python3', '-c', 'import jinja2',
check: false).returncode() != 0
error('python3 jinja2 missing')
endif
python_program = find_program('gen-shim.py')
shim_generator = generator(
python_program,
output: ['@BASENAME@-shim.cc', '@BASENAME@-shim.h', 'mock-@BASENAME@-shim.h'],
arguments: ['@INPUT@', '@BUILD_DIR@']
)
shim_outs = []
foreach p : wl_protocols
shim_outs += shim_generator.process(p)
endforeach
#==========#
# Perfetto #
#==========#
tracing_sources = []
tracing_dependencies = []
if get_option('tracing')
tracing_dependencies = [
dependency('threads'),
dependency('perfetto'),
]
cpp_args += '-DPERFETTO_TRACING'
endif
#=================#
# Gamepad support #
#=================#
gamepad_sources = []
gamepad_dependencies = []
if get_option('gamepad')
gamepad_sources = [
'sommelier-gaming.cc',
]
gamepad_dependencies = [
dependency('libevdev'),
]
cpp_args += '-DGAMEPAD_SUPPORT'
endif
#===========#
# Sommelier #
#===========#
if get_option('commit_loop_fix')
cpp_args += '-DCOMMIT_LOOP_FIX'
endif
if get_option('black_screen_fix')
cpp_args += '-DBLACK_SCREEN_FIX'
endif
sommelier_defines = [
'-D_GNU_SOURCE',
'-DWL_HIDE_DEPRECATED',
'-DXWAYLAND_PATH="' + get_option('xwayland_path') + '"',
'-DXWAYLAND_GL_DRIVER_PATH="' + get_option('xwayland_gl_driver_path') + '"',
'-DFRAME_COLOR="' + get_option('frame_color') + '"',
'-DDARK_FRAME_COLOR="' + get_option('dark_frame_color') + '"',
]
libsommelier = static_library('sommelier',
sources: [
'compositor/sommelier-compositor.cc',
'compositor/sommelier-dma-buf.cc',
'compositor/sommelier-drm.cc',
'compositor/sommelier-mmap.cc',
'compositor/sommelier-shm.cc',
'sommelier-ctx.cc',
'sommelier-data-device-manager.cc',
'sommelier-display.cc',
'sommelier-gtk-shell.cc',
'sommelier-global.cc',
'sommelier-output.cc',
'sommelier-pointer-constraints.cc',
'sommelier-relative-pointer-manager.cc',
'sommelier-seat.cc',
'sommelier-shell.cc',
'sommelier-subcompositor.cc',
'sommelier-text-input.cc',
'sommelier-timing.cc',
'sommelier-tracing.cc',
'sommelier-transform.cc',
'sommelier-util.cc',
'sommelier-viewporter.cc',
'sommelier-xdg-shell.cc',
'sommelier-xshape.cc',
'sommelier.cc',
'sommelier-window.cc',
'virtualization/virtwl_channel.cc',
'virtualization/virtgpu_channel.cc',
'xcb/xcb-shim.cc',
] + wl_outs + tracing_sources + gamepad_sources + shim_outs,
dependencies: [
meson.get_compiler('cpp').find_library('m'),
dependency('gbm'),
dependency('libdrm'),
dependency('pixman-1'),
dependency('wayland-client'),
dependency('wayland-server'),
dependency('xcb'),
dependency('xcb-composite'),
dependency('xcb-shape'),
dependency('xcb-xfixes'),
dependency('xkbcommon'),
] + tracing_dependencies + gamepad_dependencies,
cpp_args: cpp_args + sommelier_defines,
include_directories: includes,
)
executable('sommelier',
install: true,
sources: [
'sommelier-main.cc',
] + wl_outs,
link_with: libsommelier,
cpp_args: cpp_args + sommelier_defines,
include_directories: includes,
)
if get_option('with_tests')
testing_include_directory = include_directories('testing')
sommelier_test = executable('sommelier_test',
install: true,
sources: [
'sommelier-test.cc',
'sommelier-test-main.cc',
'sommelier-output-test.cc',
'sommelier-window-test.cc',
'sommelier-xdg-shell-test.cc',
'testing/mock-wayland-channel.cc',
'testing/sommelier-test-util.cc',
] + wl_outs + shim_outs,
link_with: libsommelier,
dependencies: [
dependency('gtest'),
dependency('gmock'),
dependency('pixman-1')
],
cpp_args: cpp_args + sommelier_defines,
include_directories: includes + testing_include_directory,
)
test('sommelier_test', sommelier_test)
endif