summaryrefslogtreecommitdiff
path: root/src/ipa/vimc/meson.build
blob: 8c9df854007aa6ebf32bb244d2a01401f902a9f5 (plain)
1
2
3
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * Android Camera HAL Operations
 */

#pragma once

#include <hardware/camera3.h>

int hal_dev_close(hw_device_t *hw_device);
extern camera3_device_ops# SPDX-License-Identifier: CC0-1.0

ipa_name = 'ipa_vimc'

mod = shared_module(ipa_name,
                    'vimc.cpp',
                    name_prefix : '',
                    include_directories : [ipa_includes, libipa_includes],
                    dependencies : libcamera_dep,
                    link_with : libipa,
                    install : true,
                    install_dir : ipa_install_dir)

if ipa_sign_module
    custom_target(ipa_name + '.so.sign',
                  input : mod,
                  output : ipa_name + '.so.sign',
                  command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
                  install : false,
                  build_by_default : true)
endif

subdir('data')