about summary refs log tree commit diff
path: root/third_party/abseil_cpp/absl/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/abseil_cpp/absl/BUILD.bazel23
1 files changed, 14 insertions, 9 deletions
diff --git a/third_party/abseil_cpp/absl/BUILD.bazel b/third_party/abseil_cpp/absl/BUILD.bazel
index f7fc2a7f16..6da20c49d2 100644
--- a/third_party/abseil_cpp/absl/BUILD.bazel
+++ b/third_party/abseil_cpp/absl/BUILD.bazel
@@ -12,19 +12,16 @@
 # 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.
-#
-
-load(
-    ":compiler_config_setting.bzl",
-    "create_llvm_config",
-)
 
 package(default_visibility = ["//visibility:public"])
 
-licenses(["notice"])  # Apache 2.0
+licenses(["notice"])
 
-create_llvm_config(
-    name = "llvm_compiler",
+config_setting(
+    name = "clang_compiler",
+    flag_values = {
+        "@bazel_tools//tools/cpp:compiler": "clang",
+    },
     visibility = [":__subpackages__"],
 )
 
@@ -58,3 +55,11 @@ config_setting(
     },
     visibility = [":__subpackages__"],
 )
+
+config_setting(
+    name = "wasm",
+    values = {
+        "cpu": "wasm32",
+    },
+    visibility = [":__subpackages__"],
+)