oquenchil | 9606887 | 2019-07-08 07:01:39 -0700 | [diff] [blame] | 1 | """ |
| 2 | Copyright 2017 The Bazel Authors. All rights reserved. |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 3 | |
oquenchil | 9606887 | 2019-07-08 07:01:39 -0700 | [diff] [blame] | 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | This is a quick and dirty rule to make Bazel compile itself. It |
| 17 | only supports Java. |
| 18 | """ |
| 19 | |
| 20 | load("@rules_cc//cc:defs.bzl", macro_cc_bin = "cc_binary", macro_cc_lib = "cc_library", macro_cc_test = "cc_test") |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 21 | |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 22 | def win_cc_library(srcs = [], deps = [], hdrs = [], **kwargs): |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 23 | """Replace srcs and hdrs with a dummy.cc on non-Windows platforms.""" |
oquenchil | 9606887 | 2019-07-08 07:01:39 -0700 | [diff] [blame] | 24 | macro_cc_lib( |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 25 | srcs = select({ |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 26 | "//conditions:default": ["dummy.cc"], |
tomlu | 1a483d4 | 2017-11-30 15:08:40 -0800 | [diff] [blame] | 27 | "//src/conditions:windows": srcs, |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 28 | }), |
| 29 | hdrs = select({ |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 30 | "//conditions:default": [], |
tomlu | 1a483d4 | 2017-11-30 15:08:40 -0800 | [diff] [blame] | 31 | "//src/conditions:windows": hdrs, |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 32 | }), |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 33 | deps = select({ |
| 34 | "//conditions:default": [], |
| 35 | "//src/conditions:windows": deps, |
| 36 | }), |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 37 | **kwargs |
| 38 | ) |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 39 | |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 40 | def win_cc_binary(srcs = [], deps = [], **kwargs): |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 41 | """Replace srcs with a dummy.cc on non-Windows platforms.""" |
oquenchil | 9606887 | 2019-07-08 07:01:39 -0700 | [diff] [blame] | 42 | macro_cc_bin( |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 43 | srcs = select({ |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 44 | "//conditions:default": ["dummy.cc"], |
tomlu | 1a483d4 | 2017-11-30 15:08:40 -0800 | [diff] [blame] | 45 | "//src/conditions:windows": srcs, |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 46 | }), |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 47 | deps = select({ |
| 48 | "//conditions:default": [], |
| 49 | "//src/conditions:windows": deps, |
| 50 | }), |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 51 | **kwargs |
| 52 | ) |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 53 | |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 54 | def win_cc_test(srcs = [], deps = [], **kwargs): |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 55 | """Replace srcs with a dummy.cc on non-Windows platforms.""" |
oquenchil | 9606887 | 2019-07-08 07:01:39 -0700 | [diff] [blame] | 56 | macro_cc_test( |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 57 | srcs = select({ |
Yun Peng | 211d2f2 | 2017-11-20 06:12:42 -0800 | [diff] [blame] | 58 | "//conditions:default": ["dummy.cc"], |
tomlu | 1a483d4 | 2017-11-30 15:08:40 -0800 | [diff] [blame] | 59 | "//src/conditions:windows": srcs, |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 60 | }), |
Laszlo Csomor | c60675a | 2019-07-15 06:06:48 -0700 | [diff] [blame] | 61 | deps = select({ |
| 62 | "//conditions:default": [], |
| 63 | "//src/conditions:windows": deps, |
| 64 | }), |
vladmos | 20a042f | 2018-06-01 04:51:21 -0700 | [diff] [blame] | 65 | **kwargs |
| 66 | ) |