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
diff --git a/scripts/ij.bazelproject b/scripts/ij.bazelproject
index 0254680..dbf8d2e 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.