Add environment variable BUILD_FROM_SOURCE_STUB
On top of the soong build flag --build-from-source-stub, the user can configure build to generate stubs from source Java files by setting the environment variable BUILD_FROM_SOURCE_STUB=true. Test: m nothing Bug: 310279899 Change-Id: I0c5247558455f09b8fc208d988aab3b60bf0ff16
This commit is contained in:
parent
2f63457354
commit
7c1958f0f4
1 changed files with 1 additions and 1 deletions
|
@ -2079,7 +2079,7 @@ func (c *config) BuildFromTextStub() bool {
|
|||
// TODO: b/302320354 - Remove the coverage build specific logic once the
|
||||
// robust solution for handling native properties in from-text stub build
|
||||
// is implemented.
|
||||
return !c.buildFromSourceStub && !c.JavaCoverageEnabled()
|
||||
return !c.buildFromSourceStub && !c.JavaCoverageEnabled() && !c.IsEnvTrue("BUILD_FROM_SOURCE_STUB")
|
||||
}
|
||||
|
||||
func (c *config) SetBuildFromTextStub(b bool) {
|
||||
|
|
Loading…
Reference in a new issue