Files
2020-09-21 15:54:27 -07:00

30 lines
684 B
Python

################################################################################
# Copyright 2017 Google LLC.
#
# This software is licensed under the terms defined in the Widevine Master
# License Agreement. For a copy of this agreement, please contact
# widevine-licensing@google.com.
################################################################################
package(
default_visibility = ["//visibility:public"],
)
cc_library(
name = "endian",
hdrs = [
"endian.h",
],
)
cc_test(
name = "endian_test",
srcs = ["endian_test.cc"],
deps = [
":endian",
"//testing:gunit_main",
"@abseil_repo//absl/strings",
],
)