blob: e85ea93ddd1e5155a8a76338dd2a8671acc634b8 [file] [log] [blame]
# Copyright 2019 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("//common-mk/pkg_config.gni")
group("all") {
deps = [ ":libcamera_common" ]
if (use.test) {
deps += [ ":future_test" ]
}
}
pkg_config("target_defaults") {
pkg_deps = [
"libchrome",
"libudev",
]
configs = [ "//camera/build:cros_camera_common" ]
}
shared_library("libcamera_common") {
sources = [
"//camera/common/future.cc",
"//camera/common/udev_watcher.cc",
]
configs += [ ":target_defaults" ]
}
if (use.test) {
executable("future_test") {
sources = [
"//camera/common/future.cc",
"//camera/common/future_test.cc",
]
configs += [
"//common-mk:test",
":target_defaults",
]
}
}