blob: 76fe56e3622108cdca34569b0e7c0114ed399c81 [file] [edit]
# Copyright 2024 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//common-mk/pkg_config.gni")
pkg_config("target_defaults") {
configs = [ "//camera/build:cros_camera_common" ]
pkg_deps = [ "libcros_camera_android_deps" ]
}
source_set("kiosk_vision") {
sources = [
"//camera/features/kiosk_vision/kiosk_vision_library.cc",
"//camera/features/kiosk_vision/kiosk_vision_wrapper.cc",
]
public_configs = [ ":target_defaults" ]
# -fPIC needed by the libcros_camera.so shared library.
configs += [ "//common-mk:pic" ]
deps = [ "//camera/common:libcros_camera_mojom" ]
}