Index: gin/test/file_runner.cc |
diff --git a/gin/test/file_runner.cc b/gin/test/file_runner.cc |
index e6b4256571e35a88b8bf782d44a618e24dbfe5e7..e26d1d19f034f94c11c19215327b35b73eb5c28a 100644 |
--- a/gin/test/file_runner.cc |
+++ b/gin/test/file_runner.cc |
@@ -9,6 +9,7 @@ |
#include "base/path_service.h" |
#include "gin/converter.h" |
#include "gin/gin.h" |
+#include "gin/modules/console.h" |
#include "gin/modules/module_registry.h" |
#include "gin/test/gtest.h" |
#include "gin/try_catch.h" |
@@ -28,6 +29,7 @@ base::FilePath GetModuleBase() { |
FileRunnerDelegate::FileRunnerDelegate() |
: ModuleRunnerDelegate(GetModuleBase()) { |
+ AddBuiltinModule(Console::kModuleName, Console::GetTemplate); |
AddBuiltinModule(GTest::kModuleName, GTest::GetTemplate); |
} |