blob: 4ab17fd955d47e7aa568e97878cda9190093b867 [file] [log] [blame]
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//camera/build/cc_embed_data.gni")
import("//common-mk/pkg_config.gni")
pkg_config("target_defaults") {
configs = [ "//camera/build:cros_camera_common" ]
pkg_deps = [
"libcros_camera_android_deps",
"libsync",
]
}
source_set("auto_framing") {
sources = [
"//camera/features/auto_framing/auto_framing_stream_manipulator.cc",
"//camera/features/auto_framing/face_tracker.cc",
"//camera/features/auto_framing/frame_cropper.cc",
]
libs = []
public_configs = [ ":target_defaults" ]
# -fPIC needed by the libcros_camera.so shared library.
configs += [ "//common-mk:pic" ]
public_deps = [ "//camera/gpu" ]
deps = [ "//camera/gpu:image_processor" ]
}