aboutsummaryrefslogtreecommitdiffstats
path: root/cc/sabi.go
diff options
context:
space:
mode:
authorJeff Gaston <jeffrygaston@google.com>2017-09-27 17:01:44 -0700
committerColin Cross <ccross@android.com>2017-10-18 18:06:02 +0000
commitaf3cc2d23c4473828c9e4596bce36c2ba762e992 (patch)
tree7db84020037e4f83ff17fae7e033dfb85c46987e /cc/sabi.go
parent16b9ce4dff7d522aca993b38e4e44be309ba658b (diff)
downloadbuild_soong-af3cc2d23c4473828c9e4596bce36c2ba762e992.tar.gz
build_soong-af3cc2d23c4473828c9e4596bce36c2ba762e992.tar.bz2
build_soong-af3cc2d23c4473828c9e4596bce36c2ba762e992.zip
Some clarifications in preparation to automatically order linker dependencies
Test: Browse the code and determine whether it's easier to understand Bug: 66260943 Change-Id: I88c24a8a31ef68f428919087d206433659265684
Diffstat (limited to 'cc/sabi.go')
-rw-r--r--cc/sabi.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/sabi.go b/cc/sabi.go
index e45b0406..8086f5b6 100644
--- a/cc/sabi.go
+++ b/cc/sabi.go
@@ -79,7 +79,7 @@ func (sabimod *sabi) flags(ctx ModuleContext, flags Flags) Flags {
func sabiDepsMutator(mctx android.TopDownMutatorContext) {
if c, ok := mctx.Module().(*Module); ok &&
- ((c.isVndk() && c.vndk()) || inList(c.Name(), llndkLibraries) ||
+ ((c.isVndk() && c.useVndk()) || inList(c.Name(), llndkLibraries) ||
(c.sabi != nil && c.sabi.Properties.CreateSAbiDumps)) {
mctx.VisitDirectDeps(func(m blueprint.Module) {
tag := mctx.OtherModuleDependencyTag(m)