aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Loo Rong Jie <loorongjie@gmail.com>2018-04-12 09:43:06 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-12 09:45:10 -0700
commitaf2050a46d3a16f30ecc216668a23cf2888558eb (patch)
tree8c401f19378ff70892a64ede89243a62db8dca29 /src
parentc444046c87b83ed86ae09f6485435998f1fe8c79 (diff)
Remove cc_inc_library in BazelCppRuleClasses
Split from https://bazel-review.googlesource.com/c/bazel/+/50050 /cc @mhlopko Change-Id: Ie8a6d9256f65ed81b2b7006a9d19065eaf199f32 Closes #4998. Change-Id: Ie8a6d9256f65ed81b2b7006a9d19065eaf199f32 PiperOrigin-RevId: 192624031
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
index 81f87d66db..c674c880db 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
@@ -116,7 +116,7 @@ public class BazelCppRuleClasses {
static final String[] DEPS_ALLOWED_RULES =
new String[] {
- "cc_inc_library", "cc_library", "objc_library", "cc_proto_library", "cc_import",
+ "cc_library", "objc_library", "cc_proto_library", "cc_import",
};
/**
@@ -350,8 +350,8 @@ public class BazelCppRuleClasses {
.allowedFileTypes(ALLOWED_SRC_FILES))
/*<!-- #BLAZE_RULE($cc_rule).ATTRIBUTE(deps) -->
The list of other libraries to be linked in to the binary target.
- <p>These can be <code>cc_library</code>, <code>cc_inc_library</code>, or
- <code>objc_library</code> targets.</p>
+ <p>These can be <code>cc_library</code> or <code>objc_library</code>
+ targets.</p>
<!-- #END_BLAZE_RULE.ATTRIBUTE -->*/
.override(
attr("deps", LABEL_LIST)