Add USE_CLANG_LLD and use_clang_lld. am: 02b4da53a7

am: 98fda157fb

Change-Id: I3fc25e6332ae02dc4736e1f77b6de52822968d80
This commit is contained in:
Chih-Hung Hsieh
2018-04-13 12:44:15 -07:00
committed by android-build-merger
20 changed files with 178 additions and 4 deletions

View File

@@ -629,6 +629,10 @@ func (c *config) TargetOpenJDK9() bool {
return c.targetOpenJDK9
}
func (c *config) UseClangLld() bool {
return Bool(c.productVariables.UseClangLld)
}
func (c *config) ClangTidy() bool {
return Bool(c.productVariables.ClangTidy)
}

View File

@@ -191,6 +191,8 @@ type productVariables struct {
OdmPath *string `json:",omitempty"`
ProductPath *string `json:",omitempty"`
UseClangLld *bool `json:",omitempty"`
ClangTidy *bool `json:",omitempty"`
TidyChecks *string `json:",omitempty"`