Brian Silverman | a7ba3aa | 2015-10-12 00:33:03 -0400 | [diff] [blame] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
Brian Silverman | cce7658 | 2015-10-31 23:38:52 +0000 | [diff] [blame] | 3 | exports_files(['test_sharding_compliant']) |
| 4 | |
Brian Silverman | 63889f9 | 2015-11-27 01:33:56 -0500 | [diff] [blame^] | 5 | # Don't use these directly! Use //tools/build_rules/*.bzl instead. |
Brian Silverman | a7ba3aa | 2015-10-12 00:33:03 -0400 | [diff] [blame] | 6 | config_setting( |
| 7 | name = 'compiler_clang', |
| 8 | values = {'compiler': 'clang'} |
| 9 | ) |
| 10 | config_setting( |
| 11 | name = 'compiler_gcc', |
| 12 | values = {'compiler': 'gcc'} |
| 13 | ) |
| 14 | config_setting( |
| 15 | name = 'cpu_k8', |
| 16 | values = {'cpu': 'k8'}, |
| 17 | ) |
| 18 | config_setting( |
| 19 | name = 'cpu_roborio', |
| 20 | values = {'cpu': 'roborio'}, |
| 21 | ) |
Brian Silverman | 63889f9 | 2015-11-27 01:33:56 -0500 | [diff] [blame^] | 22 | config_setting( |
| 23 | name = 'has_asan', |
| 24 | values = {'copt': '-fsanitize=address'}, |
| 25 | ) |
| 26 | config_setting( |
| 27 | name = 'has_tsan', |
| 28 | values = {'copt': '-fsanitize=thread'}, |
| 29 | ) |