Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
f257e0ea
Unverified
Commit
f257e0ea
authored
Aug 17, 2020
by
John Kessenich
Committed by
GitHub
Aug 17, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2371 from RafaelMarinheiro/master
Use --test-root to pass files to Bazel tests.
parents
8f0c6bd7
89cd45cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
29 deletions
+18
-29
BUILD.bazel
BUILD.bazel
+18
-29
No files found.
BUILD.bazel
View file @
f257e0ea
...
@@ -51,7 +51,10 @@ py_binary(
...
@@ -51,7 +51,10 @@ py_binary(
genrule(
genrule(
name = "gen_build_info_h",
name = "gen_build_info_h",
srcs = ["CHANGES.md", "build_info.h.tmpl"],
srcs = [
"CHANGES.md",
"build_info.h.tmpl",
],
outs = ["glslang/build_info.h"],
outs = ["glslang/build_info.h"],
cmd = "$(location build_info) $$(dirname $(location CHANGES.md)) -i $(location build_info.h.tmpl) -o $(location glslang/build_info.h)",
cmd = "$(location build_info) $$(dirname $(location CHANGES.md)) -i $(location build_info.h.tmpl) -o $(location glslang/build_info.h)",
tools = [":build_info"],
tools = [":build_info"],
...
@@ -92,10 +95,8 @@ cc_library(
...
@@ -92,10 +95,8 @@ cc_library(
) + [
) + [
"OGLCompilersDLL/InitializeDll.cpp",
"OGLCompilersDLL/InitializeDll.cpp",
] + select({
] + select({
"@bazel_tools//src/conditions:windows":
"@bazel_tools//src/conditions:windows": ["glslang/OSDependent/Windows/ossource.cpp"],
["glslang/OSDependent/Windows/ossource.cpp"],
"//conditions:default": ["glslang/OSDependent/Unix/ossource.cpp"],
"//conditions:default":
["glslang/OSDependent/Unix/ossource.cpp"],
}),
}),
hdrs = glob([
hdrs = glob([
"glslang/HLSL/*.h",
"glslang/HLSL/*.h",
...
@@ -118,7 +119,10 @@ cc_library(
...
@@ -118,7 +119,10 @@ cc_library(
],
],
linkopts = select({
linkopts = select({
"@bazel_tools//src/conditions:windows": [""],
"@bazel_tools//src/conditions:windows": [""],
"//conditions:default": ["-lm", "-lpthread"],
"//conditions:default": [
"-lm",
"-lpthread",
],
}),
}),
linkstatic = 1,
linkstatic = 1,
)
)
...
@@ -224,18 +228,6 @@ cc_binary(
...
@@ -224,18 +228,6 @@ cc_binary(
],
],
)
)
filegroup(
name = "test_files",
srcs = glob(
["Test/**"],
exclude = [
"Test/bump",
"Test/glslangValidator",
"Test/runtests",
],
),
)
cc_library(
cc_library(
name = "glslang_test_lib",
name = "glslang_test_lib",
testonly = 1,
testonly = 1,
...
@@ -249,16 +241,9 @@ cc_library(
...
@@ -249,16 +241,9 @@ cc_library(
"gtests/main.cpp",
"gtests/main.cpp",
],
],
copts = COMMON_COPTS,
copts = COMMON_COPTS,
data = [":test_files"],
defines = [
defines = select({
"GLSLANG_TEST_DIRECTORY='\"USE_FLAG_INSTEAD\"'",
# Unfortunately we can't use $(location) in cc_library at the moment.
],
# See https://github.com/bazelbuild/bazel/issues/1023
# So we'll specify the path manually.
"@bazel_tools//src/conditions:windows":
["GLSLANG_TEST_DIRECTORY='\"../../../../../Test\"'"],
"//conditions:default":
["GLSLANG_TEST_DIRECTORY='\"Test\"'"],
}),
linkstatic = 1,
linkstatic = 1,
deps = [
deps = [
":SPIRV",
":SPIRV",
...
@@ -281,9 +266,13 @@ GLSLANG_TESTS = glob(
...
@@ -281,9 +266,13 @@ GLSLANG_TESTS = glob(
[cc_test(
[cc_test(
name = test_file.replace("gtests/", "").replace(".FromFile.cpp", "") + "_test",
name = test_file.replace("gtests/", "").replace(".FromFile.cpp", "") + "_test",
srcs = [test_file],
srcs = [test_file],
args = [
"--test-root",
"$(rootpath Test)",
],
copts = COMMON_COPTS,
copts = COMMON_COPTS,
data = [
data = [
"
:test_files
",
"
Test
",
],
],
deps = [
deps = [
":SPIRV",
":SPIRV",
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment