Skip to content

Commit

Permalink
Add missing ObjC related action names to action_names.bzl.
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 229935973
  • Loading branch information
Googler authored and Copybara-Service committed Jan 18, 2019
1 parent a01cbe2 commit f451b79
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tools/build_defs/cc/action_names.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit f451b79

Please sign in to comment.