extensionPrefs: Move data/sources into subdirectories
As we will eventually move the code to a subproject, start arranging it like a top-level srcdir. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1081
This commit is contained in:
parent
e572d5d08c
commit
c8a4a91681
7
js/extensionPrefs/data/meson.build
Normal file
7
js/extensionPrefs/data/meson.build
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
gnome.compile_resources(
|
||||||
|
app_id + '.data',
|
||||||
|
app_id + '.data.gresource.xml',
|
||||||
|
gresource_bundle: true,
|
||||||
|
install: true,
|
||||||
|
install_dir: pkgdatadir
|
||||||
|
)
|
35
js/extensionPrefs/js/meson.build
Normal file
35
js/extensionPrefs/js/meson.build
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
launcherconf = configuration_data()
|
||||||
|
launcherconf.set('app_id', app_id)
|
||||||
|
launcherconf.set('PACKAGE_NAME', meson.project_name())
|
||||||
|
launcherconf.set('PACKAGE_VERSION', meson.project_version())
|
||||||
|
launcherconf.set('prefix', prefix)
|
||||||
|
launcherconf.set('libdir', libdir)
|
||||||
|
launcherconf.set('pkgdatadir', pkgdatadir)
|
||||||
|
launcherconf.set('gjs', gjs.path())
|
||||||
|
|
||||||
|
configure_file(
|
||||||
|
input: prgname + '.in',
|
||||||
|
output: prgname,
|
||||||
|
configuration: launcherconf,
|
||||||
|
install_dir: bindir,
|
||||||
|
install_mode: 'rwxr-xr-x',
|
||||||
|
)
|
||||||
|
|
||||||
|
configure_file(
|
||||||
|
input: app_id + '.in',
|
||||||
|
output: app_id,
|
||||||
|
configuration: launcherconf,
|
||||||
|
install_dir: pkgdatadir,
|
||||||
|
)
|
||||||
|
|
||||||
|
config_dir = '@0@/../..'.format(meson.current_build_dir())
|
||||||
|
|
||||||
|
gnome.compile_resources(
|
||||||
|
app_id + '.src',
|
||||||
|
app_id + '.src.gresource.xml',
|
||||||
|
dependencies: [config_js],
|
||||||
|
source_dir: ['.', '../..', config_dir],
|
||||||
|
gresource_bundle: true,
|
||||||
|
install: true,
|
||||||
|
install_dir: pkgdatadir
|
||||||
|
)
|
2
js/extensionPrefs/js/misc/config.js.in
Normal file
2
js/extensionPrefs/js/misc/config.js.in
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/* The version of this package */
|
||||||
|
var PACKAGE_VERSION = '@PACKAGE_VERSION@';
|
8
js/extensionPrefs/js/misc/meson.build
Normal file
8
js/extensionPrefs/js/misc/meson.build
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
jsconf = configuration_data()
|
||||||
|
jsconf.set('PACKAGE_VERSION', meson.project_version())
|
||||||
|
|
||||||
|
extensions_config = configure_file(
|
||||||
|
input: 'config.js.in',
|
||||||
|
output: 'config.js',
|
||||||
|
configuration: jsconf
|
||||||
|
)
|
@ -1,46 +1,5 @@
|
|||||||
app_id = 'org.gnome.Extensions'
|
app_id = 'org.gnome.Extensions'
|
||||||
prgname = 'gnome-shell-extension-prefs'
|
prgname = 'gnome-shell-extension-prefs'
|
||||||
|
|
||||||
launcherconf = configuration_data()
|
subdir('data')
|
||||||
launcherconf.set('app_id', app_id)
|
subdir('js')
|
||||||
launcherconf.set('PACKAGE_NAME', meson.project_name())
|
|
||||||
launcherconf.set('PACKAGE_VERSION', meson.project_version())
|
|
||||||
launcherconf.set('prefix', prefix)
|
|
||||||
launcherconf.set('libdir', libdir)
|
|
||||||
launcherconf.set('pkgdatadir', pkgdatadir)
|
|
||||||
launcherconf.set('gjs', gjs.path())
|
|
||||||
|
|
||||||
configure_file(
|
|
||||||
input: prgname + '.in',
|
|
||||||
output: prgname,
|
|
||||||
configuration: launcherconf,
|
|
||||||
install_dir: bindir,
|
|
||||||
install_mode: 'rwxr-xr-x',
|
|
||||||
)
|
|
||||||
|
|
||||||
configure_file(
|
|
||||||
input: app_id + '.in',
|
|
||||||
output: app_id,
|
|
||||||
configuration: launcherconf,
|
|
||||||
install_dir: pkgdatadir,
|
|
||||||
)
|
|
||||||
|
|
||||||
config_dir = '@0@/..'.format(meson.current_build_dir())
|
|
||||||
|
|
||||||
gnome.compile_resources(
|
|
||||||
app_id + '.src',
|
|
||||||
app_id + '.src.gresource.xml',
|
|
||||||
dependencies: [config_js],
|
|
||||||
source_dir: ['.', '..', config_dir],
|
|
||||||
gresource_bundle: true,
|
|
||||||
install: true,
|
|
||||||
install_dir: pkgdatadir
|
|
||||||
)
|
|
||||||
|
|
||||||
gnome.compile_resources(
|
|
||||||
app_id + '.data',
|
|
||||||
app_id + '.data.gresource.xml',
|
|
||||||
gresource_bundle: true,
|
|
||||||
install: true,
|
|
||||||
install_dir: pkgdatadir
|
|
||||||
)
|
|
||||||
|
@ -17,7 +17,7 @@ rules:
|
|||||||
overrides:
|
overrides:
|
||||||
- files: js/**
|
- files: js/**
|
||||||
excludedFiles:
|
excludedFiles:
|
||||||
- js/extensionPrefs/*
|
- js/extensionPrefs/**
|
||||||
- js/portalHelper/*
|
- js/portalHelper/*
|
||||||
globals:
|
globals:
|
||||||
global: readonly
|
global: readonly
|
||||||
|
@ -5,9 +5,9 @@ data/org.gnome.Extensions.desktop.in.in
|
|||||||
data/org.gnome.Shell.desktop.in.in
|
data/org.gnome.Shell.desktop.in.in
|
||||||
data/org.gnome.shell.gschema.xml.in
|
data/org.gnome.shell.gschema.xml.in
|
||||||
data/org.gnome.Shell.PortalHelper.desktop.in.in
|
data/org.gnome.Shell.PortalHelper.desktop.in.in
|
||||||
js/extensionPrefs/main.js
|
js/extensionPrefs/js/main.js
|
||||||
js/extensionPrefs/ui/extension-row.ui
|
js/extensionPrefs/data/ui/extension-row.ui
|
||||||
js/extensionPrefs/ui/extensions-window.ui
|
js/extensionPrefs/data/ui/extensions-window.ui
|
||||||
js/gdm/authPrompt.js
|
js/gdm/authPrompt.js
|
||||||
js/gdm/loginDialog.js
|
js/gdm/loginDialog.js
|
||||||
js/gdm/util.js
|
js/gdm/util.js
|
||||||
|
Loading…
Reference in New Issue
Block a user