mirror of
https://gitee.com/openharmony/third_party_spirv-tools
synced 2024-11-22 23:09:56 +00:00
e8ad9735b1
Signed-off-by: huruitao <huruitao@kaihong.com>
33 lines
662 B
Python
33 lines
662 B
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
strip_prefix = "bazel-skylib-main",
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/main.zip"],
|
|
)
|
|
|
|
local_repository(
|
|
name = "spirv_headers",
|
|
path = "external/spirv-headers",
|
|
)
|
|
|
|
local_repository(
|
|
name = "com_google_googletest",
|
|
path = "external/googletest",
|
|
)
|
|
|
|
local_repository(
|
|
name = "com_googlesource_code_re2",
|
|
path = "external/re2",
|
|
)
|
|
|
|
local_repository(
|
|
name = "com_google_effcee",
|
|
path = "external/effcee",
|
|
)
|
|
|
|
local_repository(
|
|
name = "com_google_absl",
|
|
path = "external/abseil_cpp",
|
|
)
|