-
Notifications
You must be signed in to change notification settings - Fork 244
/
meson.options
91 lines (77 loc) · 1.73 KB
/
meson.options
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
option('frida_version',
type: 'string',
value: '',
description: 'Frida version, such as 16.2.2 or 16.2.2-dev.27',
)
option('graft_tool',
type: 'feature',
value: 'auto',
description: 'Build gum-graft tool',
)
option('diet',
type: 'boolean',
value: false,
description: 'Optimize for minimal footprint'
)
option('allocator',
type: 'combo',
choices: ['auto', 'internal', 'system'],
value: 'auto',
description: 'Which memory allocator to use'
)
option('jailbreak',
type: 'feature',
value: 'auto',
description: 'Include jailbreak-specific integrations'
)
option('gumpp',
type: 'feature',
value: 'disabled',
description: 'Build C++ bindings'
)
option('gumjs',
type: 'feature',
value: 'disabled',
description: 'Build JavaScript bindings'
)
option('quickjs',
type: 'feature',
value: 'enabled',
description: 'Build JavaScript bindings with QuickJS runtime included'
)
option('v8',
type: 'feature',
value: 'auto',
description: 'Build JavaScript bindings with V8 runtime included'
)
option('database',
type: 'feature',
value: 'enabled',
description: 'Build JavaScript bindings with Database API included'
)
option('frida_objc_bridge',
type: 'feature',
value: 'auto',
description: 'Build JavaScript bindings with ObjC bridge included'
)
option('frida_swift_bridge',
type: 'feature',
value: 'auto',
description: 'Build JavaScript bindings with Swift bridge included'
)
option('frida_java_bridge',
type: 'feature',
value: 'auto',
description: 'Build JavaScript bindings with Java bridge included'
)
option('devkits',
type: 'array',
choices: ['gum', 'gumjs'],
value: [],
description: 'Devkits to build'
)
option('tests',
type: 'feature',
value: 'auto',
description: 'Build tests'
)