Turn implicit rules into warnings

Test: build_test in downstream branches
Change-Id: I853e3fa11793cc76ad568b74f7dc31c3d1c5582b
This commit is contained in:
Dan Willemsen
2018-06-15 21:54:47 -07:00
parent f89db951e5
commit fa42f3c10d
3 changed files with 15 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ type configImpl struct {
targetDevice string
targetDeviceDir string
pdkBuild bool
brokenDupRules bool
pathReplaced bool
@@ -579,3 +580,11 @@ func (c *configImpl) SetTargetDeviceDir(dir string) {
func (c *configImpl) TargetDeviceDir() string {
return c.targetDeviceDir
}
func (c *configImpl) SetPdkBuild(pdk bool) {
c.pdkBuild = pdk
}
func (c *configImpl) IsPdkBuild() bool {
return c.pdkBuild
}