diff options
| author | 2021-03-18 08:58:16 +0000 | |
|---|---|---|
| committer | 2021-03-18 08:58:16 +0000 | |
| commit | 734b215d66aab582c20bbcf425e058adfa2b87b0 (patch) | |
| tree | 053a36f6926a6a8b8f376bdd1256c3f8dd17ef3c /android/config.go | |
| parent | 7f09fd298a1d24c3d438e27dc590ea215114d8cd (diff) | |
| parent | 5f6cb1d6d3465e7ef2d44482ecf2ac7a5d30b129 (diff) | |
Merge "Compile soong_build for debugging if needed."
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index c880aebc2..b6c862ddc 100644 --- a/android/config.go +++ b/android/config.go @@ -73,6 +73,10 @@ func (c Config) NinjaBuildDir() string { return c.buildDir } +func (c Config) DebugCompilation() bool { + return false // Never compile Go code in the main build for debugging +} + func (c Config) SrcDir() string { return c.srcDir } |