################################################################################ # 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", ], )