aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGoogler <dmaclach@google.com>2023-06-12 06:52:31 -0700
committerCopybara-Service <copybara-worker@google.com>2023-06-12 06:53:11 -0700
commit1dbb6917128da0ef5e35df3e8b060488e8c2acdc (patch)
tree3a7f9b1619020bf624f35d092a197c997114fe7b
parent7f0992b0bd47d5b24076c2d022ba1819cc8641e4 (diff)
downloadbazelbuild-rules_cc-1dbb6917128da0ef5e35df3e8b060488e8c2acdc.tar.gz
Get rid of unused objcpp_executable type
PiperOrigin-RevId: 539637641 Change-Id: I80f65a738e77b58054121bfe19a47659fb50fc42
-rw-r--r--cc/action_names.bzl4
1 files changed, 0 insertions, 4 deletions
diff --git a/cc/action_names.bzl b/cc/action_names.bzl
index ac7a341..82325d1 100644
--- a/cc/action_names.bzl
+++ b/cc/action_names.bzl
@@ -80,9 +80,6 @@ OBJCPP_COMPILE_ACTION_NAME = "objc++-compile"
# A string constant for the objc executable link action.
OBJC_EXECUTABLE_ACTION_NAME = "objc-executable"
-# A string constant for the objc++ executable link action.
-OBJCPP_EXECUTABLE_ACTION_NAME = "objc++-executable"
-
# A string constant for the objc fully-link link action.
OBJC_FULLY_LINK_ACTION_NAME = "objc-fully-link"
@@ -113,7 +110,6 @@ ACTION_NAMES = struct(
objc_executable = OBJC_EXECUTABLE_ACTION_NAME,
objc_fully_link = OBJC_FULLY_LINK_ACTION_NAME,
objcpp_compile = OBJCPP_COMPILE_ACTION_NAME,
- objcpp_executable = OBJCPP_EXECUTABLE_ACTION_NAME,
clif_match = CLIF_MATCH_ACTION_NAME,
)