blob: 1cc7563313b98ceddf1077540745d52baaa01e2f [file] [log] [blame] [edit]
# Copyright 2019 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("all") {
deps = [
":libcab_test",
":libcam_algo_test",
]
}
pkg_config("target_defaults") {
pkg_deps = [ "libcros_camera" ]
configs = [ "//camera/build:cros_camera_common" ]
}
shared_library("libcam_algo_test") {
sources = [ "//camera/common/fake_libcam_algo.cc" ]
configs += [ ":target_defaults" ]
install_path = "lib"
}
executable("libcab_test") {
sources = [ "//camera/common/libcab_test_main.cc" ]
configs += [
":target_defaults",
"//common-mk:test",
]
install_path = "bin"
pkg_deps = [ "libbrillo" ]
libs = [ "rt" ]
}