diff options
| author | 2021-03-17 12:54:18 +0000 | |
|---|---|---|
| committer | 2021-03-17 12:54:18 +0000 | |
| commit | 059972c214ddf757643303c13d84d4490ce23880 (patch) | |
| tree | 56376c1c3f1ec363a68f8c36612a8475c80039d6 /android/config.go | |
| parent | 797b03eec953cd942f4632e1ca4a6934e71fb581 (diff) | |
| parent | d1e3f1ff080a23cdd99653d2509a581e983dc3d3 (diff) | |
Merge "Embed minibp into soong_ui."
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 cae419b8f..f4685a196 100644 --- a/android/config.go +++ b/android/config.go @@ -506,6 +506,10 @@ func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) { c.stopBefore = stopBefore } +func (c *config) SetAllowMissingDependencies() { + c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true) +} + var _ bootstrap.ConfigStopBefore = (*config)(nil) // BlueprintToolLocation returns the directory containing build system tools |