1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_test")
# Members of this filegroup shouldn't have duplicate basenames, otherwise
# TestRunnerAction#getRuntimeArtifact() will get confused.
# Deprecated, do not use.
filegroup(
name = "runtime",
srcs = ["test-setup.sh"],
)
filegroup(
name = "test_setup",
srcs = ["test-setup.sh"],
)
filegroup(
name = "test_xml_generator",
srcs = ["generate-xml.sh"],
)
filegroup(
name = "collect_coverage",
srcs = ["collect_coverage.sh"],
)
filegroup(
name = "coverage_support",
srcs = ["collect_coverage.sh"],
)
filegroup(
name = "collect_cc_coverage",
srcs = ["collect_cc_coverage.sh"],
)
# Test wrapper binary to run tests on Windows.
# This target just wraps the actual code in "tw_lib" to make it into a binary.
# See https://github.com/bazelbuild/bazel/issues/5508
cc_binary(
name = "tw",
srcs = ["windows/tw_main.cc"],
visibility = ["//visibility:private"],
deps = [":tw_lib"],
)
cc_binary(
name = "xml",
srcs = ["windows/xml_main.cc"],
visibility = ["//visibility:private"],
deps = [":tw_lib"],
)
# Test wrapper binary to run tests on Windows.
# See https://github.com/bazelbuild/bazel/issues/5508
cc_library(
name = "tw_lib",
srcs = select({
"@bazel_tools//src/conditions:windows": ["windows/tw.cc"],
"//conditions:default": ["empty_test_wrapper.cc"],
}),
hdrs = select({
"@bazel_tools//src/conditions:windows": ["windows/tw.h"],
"//conditions:default": [],
}),
linkopts = select({
"//src/conditions:windows": [
"-DEFAULTLIB:advapi32.lib", # GetUserNameW
],
"//conditions:default": [],
}),
visibility = ["//visibility:private"],
deps = select({
"@bazel_tools//src/conditions:windows": [
"//src/main/cpp/util:filesystem",
"//src/main/cpp/util:strings",
"//src/main/native/windows:lib-file",
"//src/main/native/windows:lib-process",
"//third_party/ijar:zip",
"@bazel_tools//tools/cpp/runfiles",
],
"//conditions:default": [],
}),
)
cc_test(
name = "tw_test",
srcs = select({
"@bazel_tools//src/conditions:windows": ["windows/tw_test.cc"],
"//conditions:default": ["empty_test.cc"],
}),
deps = [
":tw_lib",
"//src/main/cpp/util:filesystem",
"//src/test/cpp/util:windows_test_util",
"@com_google_googletest//:gtest_main",
] + select({
"@bazel_tools//src/conditions:windows": [
"//src/main/native/windows:lib-file",
"//third_party/ijar:zip",
],
"//conditions:default": [],
}),
)
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
filegroup(
name = "embedded_tools",
srcs = [
"BUILD.tools",
"test-setup.sh",
"generate-xml.sh",
"collect_coverage.sh",
"collect_cc_coverage.sh",
] + select({
"@bazel_tools//src/conditions:windows": [
"tw",
"xml",
],
"//conditions:default": [],
}),
visibility = ["//tools:__pkg__"],
)
test_suite(
name = "windows_tests",
tags = [
"-no_windows",
"-slow",
],
visibility = ["//visibility:private"],
)
test_suite(
name = "all_windows_tests",
tests = [
":windows_tests",
"//tools/test/CoverageOutputGenerator/javatests/com/google/devtools/coverageoutputgenerator:all_windows_tests",
],
visibility = ["//tools:__pkg__"],
)
|