Merge "Save compilation units in protobuf format."
This commit is contained in:
commit
1be2d48005
|
@ -835,6 +835,14 @@ func (c *config) XrefCorpusName() string {
|
||||||
return c.Getenv("XREF_CORPUS")
|
return c.Getenv("XREF_CORPUS")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Returns Compilation Unit encoding to use. Can be 'json' (default), 'proto' or 'all'.
|
||||||
|
func (c *config) XrefCuEncoding() string {
|
||||||
|
if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
|
||||||
|
return enc
|
||||||
|
}
|
||||||
|
return "json"
|
||||||
|
}
|
||||||
|
|
||||||
func (c *config) EmitXrefRules() bool {
|
func (c *config) EmitXrefRules() bool {
|
||||||
return c.XrefCorpusName() != ""
|
return c.XrefCorpusName() != ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,12 +6,14 @@
|
||||||
# The following environment variables affect the result:
|
# The following environment variables affect the result:
|
||||||
# BUILD_NUMBER build number, used to generate unique ID (will use UUID if not set)
|
# BUILD_NUMBER build number, used to generate unique ID (will use UUID if not set)
|
||||||
# DIST_DIR where the resulting all.kzip will be placed
|
# DIST_DIR where the resulting all.kzip will be placed
|
||||||
|
# KYTHE_KZIP_ENCODING proto or json (proto is default)
|
||||||
# OUT_DIR output directory (out if not specified})
|
# OUT_DIR output directory (out if not specified})
|
||||||
# TARGET_BUILD_VARIANT variant, e.g., `userdebug`
|
# TARGET_BUILD_VARIANT variant, e.g., `userdebug`
|
||||||
# TARGET_PRODUCT target device name, e.g., 'aosp_blueline'
|
# TARGET_PRODUCT target device name, e.g., 'aosp_blueline'
|
||||||
# XREF_CORPUS source code repository URI, e.g., 'android.googlesource.com/platform/superproject'
|
# XREF_CORPUS source code repository URI, e.g., 'android.googlesource.com/platform/superproject'
|
||||||
|
|
||||||
: ${BUILD_NUMBER:=$(uuidgen)}
|
: ${BUILD_NUMBER:=$(uuidgen)}
|
||||||
|
: ${KYTHE_KZIP_ENCODING:=proto}
|
||||||
|
|
||||||
# The extraction might fail for some source files, so run with -k and then check that
|
# The extraction might fail for some source files, so run with -k and then check that
|
||||||
# sufficiently many files were generated.
|
# sufficiently many files were generated.
|
||||||
|
|
|
@ -238,9 +238,13 @@ var (
|
||||||
_ = pctx.SourcePathVariable("kytheVnames", "build/soong/vnames.json")
|
_ = pctx.SourcePathVariable("kytheVnames", "build/soong/vnames.json")
|
||||||
_ = pctx.VariableFunc("kytheCorpus",
|
_ = pctx.VariableFunc("kytheCorpus",
|
||||||
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCorpusName() })
|
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCorpusName() })
|
||||||
|
_ = pctx.VariableFunc("kytheCuEncoding",
|
||||||
|
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCuEncoding() })
|
||||||
kytheExtract = pctx.StaticRule("kythe",
|
kytheExtract = pctx.StaticRule("kythe",
|
||||||
blueprint.RuleParams{
|
blueprint.RuleParams{
|
||||||
Command: "rm -f $out && KYTHE_CORPUS=${kytheCorpus} KYTHE_OUTPUT_FILE=$out KYTHE_VNAMES=$kytheVnames $cxxExtractor $cFlags $in ",
|
Command: `rm -f $out && ` +
|
||||||
|
`KYTHE_CORPUS=${kytheCorpus} KYTHE_OUTPUT_FILE=$out KYTHE_VNAMES=$kytheVnames KYTHE_KZIP_ENCODING=${kytheCuEncoding} ` +
|
||||||
|
`$cxxExtractor $cFlags $in `,
|
||||||
CommandDeps: []string{"$cxxExtractor", "$kytheVnames"},
|
CommandDeps: []string{"$cxxExtractor", "$kytheVnames"},
|
||||||
},
|
},
|
||||||
"cFlags")
|
"cFlags")
|
||||||
|
|
|
@ -64,6 +64,8 @@ var (
|
||||||
|
|
||||||
_ = pctx.VariableFunc("kytheCorpus",
|
_ = pctx.VariableFunc("kytheCorpus",
|
||||||
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCorpusName() })
|
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCorpusName() })
|
||||||
|
_ = pctx.VariableFunc("kytheCuEncoding",
|
||||||
|
func(ctx android.PackageVarContext) string { return ctx.Config().XrefCuEncoding() })
|
||||||
_ = pctx.SourcePathVariable("kytheVnames", "build/soong/vnames.json")
|
_ = pctx.SourcePathVariable("kytheVnames", "build/soong/vnames.json")
|
||||||
// Run it with -add-opens=java.base/java.nio=ALL-UNNAMED to avoid JDK9's warning about
|
// Run it with -add-opens=java.base/java.nio=ALL-UNNAMED to avoid JDK9's warning about
|
||||||
// "Illegal reflective access by com.google.protobuf.Utf8$UnsafeProcessor ...
|
// "Illegal reflective access by com.google.protobuf.Utf8$UnsafeProcessor ...
|
||||||
|
@ -76,6 +78,7 @@ var (
|
||||||
`KYTHE_ROOT_DIRECTORY=. KYTHE_OUTPUT_FILE=$out ` +
|
`KYTHE_ROOT_DIRECTORY=. KYTHE_OUTPUT_FILE=$out ` +
|
||||||
`KYTHE_CORPUS=${kytheCorpus} ` +
|
`KYTHE_CORPUS=${kytheCorpus} ` +
|
||||||
`KYTHE_VNAMES=${kytheVnames} ` +
|
`KYTHE_VNAMES=${kytheVnames} ` +
|
||||||
|
`KYTHE_KZIP_ENCODING=${kytheCuEncoding} ` +
|
||||||
`${config.SoongJavacWrapper} ${config.JavaCmd} ` +
|
`${config.SoongJavacWrapper} ${config.JavaCmd} ` +
|
||||||
`--add-opens=java.base/java.nio=ALL-UNNAMED ` +
|
`--add-opens=java.base/java.nio=ALL-UNNAMED ` +
|
||||||
`-jar ${config.JavaKytheExtractorJar} ` +
|
`-jar ${config.JavaKytheExtractorJar} ` +
|
||||||
|
|
Loading…
Reference in New Issue