Add objcopy_embed_data to rules_cc action_names.bzl.

PiperOrigin-RevId: 680579470
Change-Id: I73600ea8df35aa8a7983ebc4e2e278945d2e65cb
This commit is contained in:
Googler 2024-09-30 08:06:53 -07:00 committed by Copybara-Service
parent 848d56aa29
commit 9cb80cfc32
1 changed files with 4 additions and 0 deletions

View File

@ -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.