mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
23f3bdfea1
These have a new spelling: INSTANTIATE_TEST_CASE_P -> INSTANTIATE_TEST_SUITE_P
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
workspace(name = "org_khronos_glslang")
|
|
load(
|
|
"@bazel_tools//tools/build_defs/repo:http.bzl",
|
|
"http_archive",
|
|
)
|
|
|
|
http_archive(
|
|
name = "com_google_googletest",
|
|
sha256 = "94c634d499558a76fa649edb13721dce6e98fb1e7018dfaeba3cd7a083945e91",
|
|
strip_prefix = "googletest-release-1.10.0",
|
|
urls = ["https://github.com/google/googletest/archive/release-1.10.0.zip"], # 3-Oct-2019
|
|
)
|
|
|
|
http_archive(
|
|
name = "com_googlesource_code_re2",
|
|
sha256 = "b885bb965ab4b6cf8718bbb8154d8f6474cd00331481b6d3e390babb3532263e",
|
|
strip_prefix = "re2-e860767c86e577b87deadf24cc4567ea83c4f162/",
|
|
urls = ["https://github.com/google/re2/archive/e860767c86e577b87deadf24cc4567ea83c4f162.zip"],
|
|
)
|
|
|
|
http_archive(
|
|
name = "com_google_effcee",
|
|
build_file = "BUILD.effcee.bazel",
|
|
sha256 = "b0c21a01995fdf9792510566d78d5e7fe6f83cb4ba986eba691f4926f127cb34",
|
|
strip_prefix = "effcee-8f0a61dc95e0df18c18e0ac56d83b3fa9d2fe90b/",
|
|
urls = ["https://github.com/google/effcee/archive/8f0a61dc95e0df18c18e0ac56d83b3fa9d2fe90b.zip"],
|
|
)
|