androidmk: support conditionals on HOST_OS == linux
Add HOST_OS == linux to the supported conditionals, and replace a manual list with a map lookup. Change-Id: I0c26e3a854d1011870f41c05fc400d68334cd45f
This commit is contained in:
parent
24e6aef941
commit
bbcb4963d6
2 changed files with 8 additions and 8 deletions
|
@ -87,10 +87,12 @@ var conditionalTranslations = map[string]struct {
|
|||
class string
|
||||
suffix string
|
||||
}{
|
||||
"($(HOST_OS),darwin)": {"host_os", "darwin"},
|
||||
"($(HOST_OS), darwin)": {"host_os", "darwin"},
|
||||
"($(HOST_OS),windows)": {"host_os", "windows"},
|
||||
"($(HOST_OS), windows)": {"host_os", "windows"},
|
||||
"($(HOST_OS),darwin)": {"target", "darwin"},
|
||||
"($(HOST_OS), darwin)": {"target", "darwin"},
|
||||
"($(HOST_OS),windows)": {"target", "windows"},
|
||||
"($(HOST_OS), windows)": {"target", "windows"},
|
||||
"($(HOST_OS),linux)": {"target", "linux"},
|
||||
"($(HOST_OS), linux)": {"target", "linux"},
|
||||
}
|
||||
|
||||
func mydir(args []string) string {
|
||||
|
|
|
@ -125,9 +125,7 @@ func main() {
|
|||
case "ifeq", "ifneq":
|
||||
args := directive.Args.Dump()
|
||||
eq := directive.Name == "ifeq"
|
||||
switch args {
|
||||
case "($(HOST_OS),windows)", "($(HOST_OS), windows)",
|
||||
"($(HOST_OS),darwin)", "($(HOST_OS), darwin)":
|
||||
if _, ok := conditionalTranslations[args]; ok {
|
||||
newCond := conditional{args, eq}
|
||||
conds = append(conds, &newCond)
|
||||
if cond == nil {
|
||||
|
@ -135,7 +133,7 @@ func main() {
|
|||
} else {
|
||||
file.errorf(directive, "unsupported nested conditional")
|
||||
}
|
||||
default:
|
||||
} else {
|
||||
file.errorf(directive, "unsupported conditional")
|
||||
conds = append(conds, nil)
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue