blob: de6be465dfe739edc9dc253a6e7f0cd12e762a9c (
plain)
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
|
web_extension_sources = [
'ephy-embed-form-auth.c',
'ephy-uri-tester.c',
'ephy-web-dom-utils.c',
'ephy-web-extension.c',
'ephy-web-extension-main.c',
'ephy-web-overview.c',
'ephy-web-overview-model.c'
]
web_extension_deps = [
ephymisc_dep,
webkit2gtk_web_extension_dep
]
if get_option('enable_https_everywhere')
web_extension_deps += httpseverywhere_dep
endif
shared_module('ephywebextension',
web_extension_sources,
dependencies: web_extension_deps,
install: true,
install_dir: webextensionsdir,
install_rpath: pkglibdir
)
|