You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
548 B

# Description:
# The libyuv package provides implementation yuv image conversion, rotation
# and scaling.
licenses(["notice"]) # BSD license
exports_files(["LICENSE"])
cc_library(
name = "libyuv",
srcs = glob(
[
"source/*.cc",
"include/libyuv/*.h",
],
),
hdrs = [
"include/libyuv.h",
"include/libyuv/compare.h",
"include/libyuv/convert.h",
"include/libyuv/video_common.h",
],
includes = ["include"],
visibility = ["//visibility:public"],
)