kythe.io@v0.0.68-0.20240422202219-7225dbc01741/third_party/BUILD (about) 1 package(default_visibility = ["//visibility:public"]) 2 3 # This filegroup should include all licenses of third_party libraries 4 # distributed in Kythe binary releases. 5 # Note: many of the licenses are vendored for external repo deps; double-check 6 # %workspace%/external.bzl to ensure that any license deleted is actually 7 # unused. 8 filegroup( 9 name = "licenses", 10 srcs = ["README"] + [ 11 "//third_party/absl:LICENSE", 12 "//third_party/auto:LICENSE.txt", 13 "//third_party/bazel:license", 14 "//third_party/boringssl:LICENSE", 15 "//third_party/errorprone:COPYING", 16 "//third_party/gflags:COPYING.txt", 17 "//third_party/glog:COPYING", 18 "//third_party/go:licenses", 19 "//third_party/guava:COPYING", 20 "//third_party/jcommander:license.txt", 21 "//third_party/jsr250_api:LICENSE", 22 "//third_party/jsr305:LICENSE", 23 "//third_party/libmemcached:COPYING", 24 "//third_party/libuuid:COPYING", 25 "//third_party/llvm:license", 26 "//third_party/ow2-asm:LICENSE.txt", 27 "//third_party/re2:LICENSE", 28 "//third_party/re2j:LICENSE", 29 "//third_party/riegeli:LICENSE", 30 "//third_party/safe_html_types:LICENSE", 31 "//third_party/truth:LICENSE", 32 "//third_party/zlib:README", 33 "@com_github_google_leveldb//:license", 34 "@com_github_google_snappy//:license", 35 "@com_github_tencent_rapidjson//:license", 36 "@com_google_protobuf//:LICENSE", 37 "@org_brotli//:LICENSE", 38 ], 39 ) 40 41 cc_library( 42 name = "libuuid", 43 srcs = ["empty.cc"], 44 linkopts = select({ 45 "@bazel_tools//src/conditions:darwin": [], 46 "//conditions:default": ["-luuid"], 47 }), 48 ) 49 50 exports_files(["libmemcached.mem_config.h"]) 51 52 alias( 53 name = "gtest", 54 actual = "@com_google_googletest//:gtest", 55 ) 56 57 alias( 58 name = "gtest_main", 59 actual = "@com_google_googletest//:gtest_main", 60 ) 61 62 alias( 63 name = "gmock", 64 actual = "@com_google_googletest//:gtest", 65 ) 66 67 alias( 68 name = "gmock_main", 69 actual = "@com_google_googletest//:gtest_main", 70 )