blob: 0536cb0c21ce60d273447c185f75d7ab99f9fa4f [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("algorithms_test") {
testonly = true
sources = [ "blc_test.cc" ]
deps = [
"//src/camera/drivers/test_utils",
"//src/camera/lib/image_utils:algorithms",
"//src/lib/fxl/test:gtest_main",
]
}
executable("test") {
output_name = "image_writer_test"
testonly = true
sources = [
"hsv_generator_test.cc",
"image_format_test.cc",
"raw12_writer_test.cc",
]
deps = [
"//sdk/lib/fidl/cpp",
"//sdk/lib/syslog/cpp",
"//src/camera/drivers/test_utils",
"//src/camera/lib/image_utils:hsv_color_source",
"//src/camera/lib/image_utils:image_format_rgba",
"//src/camera/lib/image_utils:image_writer",
"//src/lib/fxl/test:gtest_main",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/image-format",
"//zircon/system/ulib/syslog",
]
}