blob: 4c0a436398df370f1935db558107998accb75fe1 [file] [log] [blame] [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("super_resolution") {
sources = [ "//camera/features/super_resolution/single_frame_upsampler.cc" ]
public_configs = [ ":target_defaults" ]
# -fPIC needed by the libcros_camera.so shared library.
configs += [ "//common-mk:pic" ]
deps = [ "//camera/common:libcros_camera_mojom" ]
}