From 9cb80cfc3226bfe004e8784c3ae999601bf3fd0f Mon Sep 17 00:00:00 2001 From: Googler Date: Mon, 30 Sep 2024 08:06:53 -0700 Subject: [PATCH] Add objcopy_embed_data to rules_cc action_names.bzl. PiperOrigin-RevId: 680579470 Change-Id: I73600ea8df35aa8a7983ebc4e2e278945d2e65cb --- cc/action_names.bzl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cc/action_names.bzl b/cc/action_names.bzl index 3df7cfa2..6735d82b 100644 --- a/cc/action_names.bzl +++ b/cc/action_names.bzl @@ -88,6 +88,9 @@ OBJC_FULLY_LINK_ACTION_NAME = "objc-fully-link" # A string constant for the clif action. CLIF_MATCH_ACTION_NAME = "clif-match" +# A string constant for the obj copy actions. +OBJ_COPY_ACTION_NAME = "objcopy_embed_data" + ACTION_NAMES = struct( c_compile = C_COMPILE_ACTION_NAME, cpp_compile = CPP_COMPILE_ACTION_NAME, @@ -113,6 +116,7 @@ ACTION_NAMES = struct( objc_fully_link = OBJC_FULLY_LINK_ACTION_NAME, objcpp_compile = OBJCPP_COMPILE_ACTION_NAME, clif_match = CLIF_MATCH_ACTION_NAME, + objcopy_embed_data = OBJ_COPY_ACTION_NAME, ) # Names of actions that parse or compile C++ code.