aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/launcher/win_rules.bzl
diff options
context:
space:
mode:
authorGravatar Yun Peng <pcloudy@google.com>2017-11-20 06:12:42 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-11-20 06:14:49 -0800
commit211d2f2bd0882f584c6bcaabb9451cfd7b4a4c7c (patch)
tree9a94e80a916563ba8d576ad1c03324a4ccb65233 /src/tools/launcher/win_rules.bzl
parentd0bf589f2716b3d139c210930371a684c6e158eb (diff)
Make bazel test src/tools/launcher/... pass on Unix platform
Since src/tools/launcher is Windows specific, it doesn't actually work on Linux. Here we select a dummy source file for cc targets non-Windows platform. Change-Id: I9a6550ea23a3656ad72cb46b9652f154e2fbf44f PiperOrigin-RevId: 176350180
Diffstat (limited to 'src/tools/launcher/win_rules.bzl')
-rw-r--r--src/tools/launcher/win_rules.bzl47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/tools/launcher/win_rules.bzl b/src/tools/launcher/win_rules.bzl
new file mode 100644
index 0000000000..ca30ebfd08
--- /dev/null
+++ b/src/tools/launcher/win_rules.bzl
@@ -0,0 +1,47 @@
+# Copyright 2017 The Bazel Authors. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# This is a quick and dirty rule to make Bazel compile itself. It
+# only supports Java.
+
+def cc_library(srcs=[], hdrs=[], **kwargs):
+ """Replace srcs and hdrs with a dummy.cc on non-Windows platforms."""
+ native.cc_library(
+ srcs = select({
+ "//conditions:default": ["dummy.cc"],
+ "//src:windows": srcs,
+ }),
+ hdrs = select({
+ "//conditions:default": [],
+ "//src:windows": hdrs,
+ }),
+ **kwargs)
+
+def cc_binary(srcs=[], **kwargs):
+ """Replace srcs with a dummy.cc on non-Windows platforms."""
+ native.cc_binary(
+ srcs = select({
+ "//conditions:default": ["dummy.cc"],
+ "//src:windows": srcs,
+ }),
+ **kwargs)
+
+def cc_test(srcs=[], **kwargs):
+ """Replace srcs with a dummy.cc on non-Windows platforms."""
+ native.cc_test(
+ srcs = select({
+ "//conditions:default": ["dummy.cc"],
+ "//src:windows": srcs,
+ }),
+ **kwargs)