635c3b0157
Rename the "common" package to "android", because common is too generic. Also removes all android.Android naming stutter. Ran: gomvpkg -from 'android/soong/common' -to 'android/soong/android' gorename -from '"android/soong/android".AndroidModuleContext' -to 'ModuleContext' gorename -from '"android/soong/android".AndroidBaseContext' -to 'BaseContext' gorename -from '"android/soong/android".AndroidModuleBase' -to 'ModuleBase' gorename -from '"android/soong/android".AndroidBottomUpMutatorContext' -to 'BottomUpMutatorContext' gorename -from '"android/soong/android".AndroidTopDownMutatorContext' -to 'TopDownMutatorContext' gorename -from '"android/soong/android".AndroidModule' -to 'Module' Change-Id: I3b23590b8ce7c8a1ea1139411d84a53163288da7
102 lines
3.1 KiB
Go
102 lines
3.1 KiB
Go
// Copyright 2015 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package cc
|
|
|
|
// This file generates the final rules for compiling all C/C++. All properties related to
|
|
// compiling should have been translated into builderFlags or another argument to the Transform*
|
|
// functions.
|
|
|
|
import (
|
|
"github.com/google/blueprint"
|
|
|
|
"android/soong/android"
|
|
)
|
|
|
|
func init() {
|
|
pctx.SourcePathVariable("lexCmd", "prebuilts/misc/${HostPrebuiltTag}/flex/flex-2.5.39")
|
|
pctx.SourcePathVariable("yaccCmd", "prebuilts/misc/${HostPrebuiltTag}/bison/bison")
|
|
pctx.SourcePathVariable("yaccDataDir", "external/bison/data")
|
|
}
|
|
|
|
var (
|
|
yacc = pctx.StaticRule("yacc",
|
|
blueprint.RuleParams{
|
|
Command: "BISON_PKGDATADIR=$yaccDataDir $yaccCmd -d $yaccFlags --defines=$hFile -o $cFile $in",
|
|
CommandDeps: []string{"$yaccCmd"},
|
|
Description: "yacc $out",
|
|
},
|
|
"yaccFlags", "cFile", "hFile")
|
|
|
|
lex = pctx.StaticRule("lex",
|
|
blueprint.RuleParams{
|
|
Command: "$lexCmd -o$out $in",
|
|
CommandDeps: []string{"$lexCmd"},
|
|
Description: "lex $out",
|
|
})
|
|
)
|
|
|
|
func genYacc(ctx android.ModuleContext, yaccFile android.Path, outFile android.ModuleGenPath, yaccFlags string) (headerFile android.ModuleGenPath) {
|
|
headerFile = android.GenPathWithExt(ctx, yaccFile, "h")
|
|
|
|
ctx.ModuleBuild(pctx, android.ModuleBuildParams{
|
|
Rule: yacc,
|
|
Outputs: android.WritablePaths{outFile, headerFile},
|
|
Input: yaccFile,
|
|
Args: map[string]string{
|
|
"yaccFlags": yaccFlags,
|
|
"cFile": outFile.String(),
|
|
"hFile": headerFile.String(),
|
|
},
|
|
})
|
|
|
|
return headerFile
|
|
}
|
|
|
|
func genLex(ctx android.ModuleContext, lexFile android.Path, outFile android.ModuleGenPath) {
|
|
ctx.ModuleBuild(pctx, android.ModuleBuildParams{
|
|
Rule: lex,
|
|
Output: outFile,
|
|
Input: lexFile,
|
|
})
|
|
}
|
|
|
|
func genSources(ctx android.ModuleContext, srcFiles android.Paths,
|
|
buildFlags builderFlags) (android.Paths, android.Paths) {
|
|
|
|
var deps android.Paths
|
|
|
|
for i, srcFile := range srcFiles {
|
|
switch srcFile.Ext() {
|
|
case ".y":
|
|
cFile := android.GenPathWithExt(ctx, srcFile, "c")
|
|
srcFiles[i] = cFile
|
|
deps = append(deps, genYacc(ctx, srcFile, cFile, buildFlags.yaccFlags))
|
|
case ".yy":
|
|
cppFile := android.GenPathWithExt(ctx, srcFile, "cpp")
|
|
srcFiles[i] = cppFile
|
|
deps = append(deps, genYacc(ctx, srcFile, cppFile, buildFlags.yaccFlags))
|
|
case ".l":
|
|
cFile := android.GenPathWithExt(ctx, srcFile, "c")
|
|
srcFiles[i] = cFile
|
|
genLex(ctx, srcFile, cFile)
|
|
case ".ll":
|
|
cppFile := android.GenPathWithExt(ctx, srcFile, "cpp")
|
|
srcFiles[i] = cppFile
|
|
genLex(ctx, srcFile, cppFile)
|
|
}
|
|
}
|
|
|
|
return srcFiles, deps
|
|
}
|