diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-03-29 19:00:05 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-04-14 02:03:06 +0300 |
commit | e62bc9db73531462dc4b28b42596d0ae26369cbd (patch) | |
tree | c654a941be88fe720d6dabde460bfecc8a863623 | |
parent | 0219dc71b3c8eea8833f9a8214fac672b54613c2 (diff) |
ipa: vimc: Remove isolated VIMC IPA module
The isolated VIMC module isn't used in any test. Remove it to prepare
for the rework of IPA module isolation. The feature can be added back
later alongside corresponding tests if needed.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
-rw-r--r-- | src/ipa/vimc/meson.build | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/ipa/vimc/meson.build b/src/ipa/vimc/meson.build index 435c7d31..e827e75f 100644 --- a/src/ipa/vimc/meson.build +++ b/src/ipa/vimc/meson.build @@ -1,15 +1,8 @@ -ipa_vimc_sources = [ - ['ipa_vimc', 'LGPL-2.1-or-later'], - ['ipa_vimc_isolate', 'Proprietary'], -] - -foreach t : ipa_vimc_sources - ipa = shared_module(t[0], 'vimc.cpp', - name_prefix : '', - include_directories : [ipa_includes, libipa_includes], - dependencies : libcamera_dep, - link_with : libipa, - install : true, - install_dir : ipa_install_dir, - cpp_args : '-DLICENSE="' + t[1] + '"') -endforeach +ipa = shared_module('ipa_vimc', 'vimc.cpp', + name_prefix : '', + include_directories : [ipa_includes, libipa_includes], + dependencies : libcamera_dep, + link_with : libipa, + install : true, + install_dir : ipa_install_dir, + cpp_args : '-DLICENSE="LGPL-2.1-or-later"') |