From f451b79d1e215bf0c87e1d3b84e0e587f55cf26b Mon Sep 17 00:00:00 2001 From: Googler Date: Fri, 18 Jan 2019 08:51:24 -0800 Subject: [PATCH] Add missing ObjC related action names to action_names.bzl. RELNOTES: None. PiperOrigin-RevId: 229935973 --- tools/build_defs/cc/action_names.bzl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tools/build_defs/cc/action_names.bzl b/tools/build_defs/cc/action_names.bzl index af02498ef8919f..fba39d3ba20d44 100644 --- a/tools/build_defs/cc/action_names.bzl +++ b/tools/build_defs/cc/action_names.bzl @@ -62,11 +62,23 @@ CPP_LINK_STATIC_LIBRARY_ACTION_NAME = "c++-link-static-library" # Name of the action stripping the binary. STRIP_ACTION_NAME = "strip" +# A string constant for the objc archive action. +OBJC_ARCHIVE_ACTION_NAME = "objc-archive" + # A string constant for the objc compilation action. OBJC_COMPILE_ACTION_NAME = "objc-compile" # A string constant for the objc++ compile action. 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" + # A string constant for the clif actions. CLIF_MATCH_ACTION_NAME = "clif-match"