summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-06-10 16:23:14 +0300
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-06-26 15:00:49 +0000
commit03f51daf2fcf82f4f3de6371aa6fb8a58555d5d2 (patch)
tree9d91df006f99933d0c6f9b762801d60147590339 /meson_options.txt
parentea317303ac428ea6c49b30f97d01ff9c92af1268 (diff)
policy: Add a deny-all policy as an example
Note this will deny any binding to the private extensions by default, if the compositor is not built with SMACK support. Defines a potential lists of applications permitted to create/display/activate surfaces/applications. Bug-AGL: SPEC-3413 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: I2dbd3b3ef0d519fde7952f97e0303ff2b151aaa0
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..72a0365
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,7 @@
+option(
+ 'policy-default',
+ type: 'combo',
+ choices: [ 'auto', 'allow-all', 'deny-all' ],
+ value: 'allow-all',
+ description: 'Default policy when no specific policy was set'
+)