Merge "m <apex_name>-deps-info prints the internal/external deps of the APEX"

This commit is contained in:
Treehugger Robot
2020-01-09 00:44:13 +00:00
committed by Gerrit Code Review
8 changed files with 117 additions and 13 deletions

View File

@@ -499,6 +499,14 @@ var (
usesLibTag = dependencyTag{name: "uses-library"}
)
func IsLibDepTag(depTag blueprint.DependencyTag) bool {
return depTag == libTag
}
func IsStaticLibDepTag(depTag blueprint.DependencyTag) bool {
return depTag == staticLibTag
}
type sdkDep struct {
useModule, useFiles, useDefaultLibs, invalidVersion bool