diff options
Diffstat (limited to 'bootstrap/config.go')
-rw-r--r-- | bootstrap/config.go | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/bootstrap/config.go b/bootstrap/config.go index 4763f50..a47bc11 100644 --- a/bootstrap/config.go +++ b/bootstrap/config.go @@ -31,9 +31,18 @@ var ( "$goRoot/pkg/tool/${goOS}_$goArch") ) -type Config interface { +type ConfigInterface interface { // GeneratingBootstrapper should return true if this build invocation is // creating a build.ninja.in file to be used in a build bootstrapping // sequence. GeneratingBootstrapper() bool } + +type Config struct { + // generatingBootstrapper should be true if this build invocation is + // creating a build.ninja.in file to be used in a build bootstrapping + // sequence. + generatingBootstrapper bool + + topLevelBlueprintsFile string +} |