blob: 09652e3dadd256c002e9003bd2b9fef1ffe63302 [file] [log] [blame]
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
iree_cc_library(
NAME
image
HDRS
"image.h"
SRCS
"image.c"
)
iree_cc_library(
NAME
test_utils
HDRS
"test_utils.h"
DEPS
::image
)
iree_cc_library(
NAME
utils
HDRS
"utils.h"
SRCS
"utils.c"
)
sparrow_test(
NAME
image_test
SRCS
"image_test.cc"
DEPS
::image
::test_utils
pw_unit_test
pw_unit_test.main
pw_assert_basic
TESTFILES
"image_test.run"
)