aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-05-18 16:18:48 +0200
committerGravatar Dmitry Lomov <dslomov@google.com>2017-05-19 15:08:04 +0200
commit74d19e62de915ccdb871503558e48fdaacce56e8 (patch)
treec1f04778904340ae8242f2805a04c6349ab55dd4 /tools
parent31c6a6188b46008308f6dc2d8af965a5f6c352fe (diff)
intellij-compile output group should request compilation artifacts from
transitive closure of targets. PiperOrigin-RevId: 156428233
Diffstat (limited to 'tools')
-rw-r--r--tools/ide/intellij_info_impl.bzl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ide/intellij_info_impl.bzl b/tools/ide/intellij_info_impl.bzl
index 9a396400af..0dc7ba86d5 100644
--- a/tools/ide/intellij_info_impl.bzl
+++ b/tools/ide/intellij_info_impl.bzl
@@ -596,6 +596,7 @@ def intellij_info_aspect_impl(target, ctx, semantics):
for dep in prerequisites:
intellij_info_text = intellij_info_text | dep.intellij_info.intellij_info_text
intellij_resolve_files = intellij_resolve_files | dep.intellij_info.intellij_resolve_files
+ intellij_compile_files = intellij_compile_files | dep.intellij_info.intellij_compile_files
# Collect python-specific information
(py_ide_info, py_resolve_files) = build_py_ide_info(target, ctx)
@@ -673,6 +674,7 @@ def intellij_info_aspect_impl(target, ctx, semantics):
target_key = target_key,
intellij_info_text = intellij_info_text,
intellij_resolve_files = intellij_resolve_files,
+ intellij_compile_files = intellij_compile_files,
export_deps = export_deps,
),
)