aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Michael Staib <mstaib@google.com>2016-05-14 14:36:20 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-05-16 15:16:47 +0000
commit6fde66efef97a8d6de718b77a25463cdc0972c09 (patch)
tree78ead0508a66cefc75272970ff23c3ad6fe0c659 /src
parentefd45cad0ab50d536d5e14024682fa1476bec7d8 (diff)
Adds configuration fragment requirements for intellij_info_aspect.
In the near future, aspect RuleContexts will enforce that they only access the configuration fragments they have declared as required, in order to prepare for the eventual migration to dynamic configurations (where only configuration fragments which are actually necessary for a particular build are loaded for that build). This change adds those declarations to intellij_info_aspect. -- MOS_MIGRATED_REVID=122337003
Diffstat (limited to 'src')
-rw-r--r--src/test/java/com/google/devtools/build/lib/ideinfo/intellij_info.bzl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/ideinfo/intellij_info.bzl b/src/test/java/com/google/devtools/build/lib/ideinfo/intellij_info.bzl
index b708333ab0..2e6aadf3a0 100644
--- a/src/test/java/com/google/devtools/build/lib/ideinfo/intellij_info.bzl
+++ b/src/test/java/com/google/devtools/build/lib/ideinfo/intellij_info.bzl
@@ -431,4 +431,5 @@ def _aspect_impl(target, ctx):
intellij_info_aspect = aspect(
implementation = _aspect_impl,
attr_aspects = ALL_DEPS.label + ALL_DEPS.label_list,
+ fragments = ["cpp"],
)