aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java b/src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java
index e94f2f5be2..63896d3ccf 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BuiltinCommandModule.java
@@ -13,6 +13,7 @@
// limitations under the License.
package com.google.devtools.build.lib.runtime;
+import com.google.devtools.build.lib.runtime.commands.AqueryCommand;
import com.google.devtools.build.lib.runtime.commands.BuildCommand;
import com.google.devtools.build.lib.runtime.commands.CanonicalizeCommand;
import com.google.devtools.build.lib.runtime.commands.CleanCommand;
@@ -58,6 +59,7 @@ public class BuiltinCommandModule extends BlazeModule {
new ShutdownCommand(),
new TestCommand(),
new VersionCommand(),
+ new AqueryCommand(),
new CqueryCommand());
// Only enable the "license" command when this binary has an embedded LICENSE file.
if (LicenseCommand.isSupported()) {