blob: 8505a15eb28aa76dc4dbc6710187bcf90fdf67bf [file] [log] [blame] [edit]
# Copyright 2021 The ChromiumOS Authors
# 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")
group("all") {
deps = [ ":image_processor_test" ]
}
pkg_config("target_defaults") {
pkg_deps = [
"libcros_camera",
"libcros_camera_android_deps",
"libdrm",
]
}
executable("image_processor_test") {
sources = [ "//camera/gpu/tests/image_processor_test.cc" ]
configs += [ ":target_defaults" ]
install_path = "bin"
deps = [
"//camera/gpu:gpu_test_support",
"//camera/gpu:image_processor",
]
}