blob: 93ca5c48b7d5d57837454b66f77048cb80b06464 [file] [log] [blame]
# Copyright 2020 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/components.gni")
group("unit_tests") {
testonly = true
deps = [ ":extend-bits-tests" ]
}
executable("extend_bits_tests") {
testonly = true
sources = [ "extend_bits_tests.cc" ]
deps = [
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
]
public_deps = [ "//src/media/lib/extend_bits" ]
# TODO(https://fxbug.dev/42136089): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}
fuchsia_unittest_package("extend-bits-tests") {
deps = [ ":extend_bits_tests" ]
}