aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/ij.bazelproject
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2017-06-22 13:36:24 +0200
committerGravatar Philipp Wollermann <philwo@google.com>2017-06-22 13:45:39 +0200
commit08d7c8eb65b14bcd91df387df3b87a26664d25a9 (patch)
tree52c78fa6a9f1153984233f5799bec1072dad87a3 /scripts/ij.bazelproject
parent221907a37121f7aacb227be22d9cd4f0928dfe39 (diff)
Include all directories in ij.bazelproject.
Without this change you can't work on any code that's not in src/{main,test} in IntelliJ, e.g. tools like the remote_worker. Closes #3224. PiperOrigin-RevId: 159812248
Diffstat (limited to 'scripts/ij.bazelproject')
-rw-r--r--scripts/ij.bazelproject4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ij.bazelproject b/scripts/ij.bazelproject
index 025468031c..dbf8d2e1d0 100644
--- a/scripts/ij.bazelproject
+++ b/scripts/ij.bazelproject
@@ -1,14 +1,14 @@
# Setup IntelliJ for Bazel development using the IntelliJ Bazel Plugin.
# See https://github.com/bazelbuild/intellij for installation instructions.
directories:
- src/main
- src/test
+ .
test_sources:
src/test/*
targets:
//src:bazel
+ //src/tools/remote_worker
//src/test/...
# TODO: Remove this once Bazel can use Java 8.