We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a0a1c commit 31ba5f6Copy full SHA for 31ba5f6
cc/action_names.bzl
@@ -103,6 +103,9 @@ OBJ_COPY_ACTION_NAME = "objcopy_embed_data"
103
# A string constant for the validation action for cc_static_library.
104
VALIDATE_STATIC_LIBRARY = "validate-static-library"
105
106
+# Name of the DWARF packaging utility action.
107
+DWP = "dwp"
108
+
109
ACTION_NAMES = struct(
110
c_compile = C_COMPILE_ACTION_NAME,
111
cpp_compile = CPP_COMPILE_ACTION_NAME,
@@ -134,6 +137,7 @@ ACTION_NAMES = struct(
134
137
clif_match = CLIF_MATCH_ACTION_NAME,
135
138
objcopy_embed_data = OBJ_COPY_ACTION_NAME,
136
139
validate_static_library = VALIDATE_STATIC_LIBRARY,
140
+ dwp = DWP,
141
)
142
143
# Names of actions that parse or compile C++ code.
0 commit comments