blob: 559f27f4b98b0860793f9fc8a24c18d795c5e92e [file] [log] [blame]
# Copyright 2018 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.
import("//build/test.gni")
source_set("yuv") {
sources = [
"yuv.cc",
"yuv.h",
]
cflags = [
# Always optimize regardless of --release or debug.
"-O3",
]
}
test("yuv_unittests") {
sources = [ "test/yuv_unittests.cc" ]
deps = [
":yuv",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
]
}
group("test") {
deps = [ ":yuv_unittests($host_toolchain)" ]
testonly = true
}