aboutsummaryrefslogtreecommitdiffstats
path: root/cc/sabi.go
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2017-08-03 21:22:50 +0900
committerJiyong Park <jiyong@google.com>2017-08-10 14:09:56 +0900
commit40350ab4f2a3baaae4324197ff713c1a11105816 (patch)
treeba835ad4e834e88e88ebba60d133335c80566679 /cc/sabi.go
parent88e6f14a6bcc1e755809b07d0a919443fb32a41c (diff)
downloadbuild_soong-40350ab4f2a3baaae4324197ff713c1a11105816.tar.gz
build_soong-40350ab4f2a3baaae4324197ff713c1a11105816.tar.bz2
build_soong-40350ab4f2a3baaae4324197ff713c1a11105816.zip
List of VNDK-related libs are exported to make
LL-NDK, VNDK-core, VNDK-SP libraries are exported to make as SOONG_LLNDK_LIBRARIES, SOONG_VNDK_CORE_LIBRARIES, and SOONG_VNDK_SAMEPROCESS_LIBRARIES. This can be used to auto-generate ld.config.txt from a template. Bug: 64013660 Test: BOARD_VNDK_VERSION=current m -j successful Test: check out/soong/make_vars*.mk and look for SOONG_*_LIBRARIES Change-Id: I0f4c5d05d9cd28c3fc9fdcca6ce0e6eaeaacbe8d
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 318d1983..6f9a6e57 100644
--- a/cc/sabi.go
+++ b/cc/sabi.go
@@ -72,7 +72,7 @@ func (sabimod *sabi) flags(ctx ModuleContext, flags Flags) Flags {
func sabiDepsMutator(mctx android.TopDownMutatorContext) {
if c, ok := mctx.Module().(*Module); ok &&
- (c.isVndk() || inList(c.Name(), config.LLndkLibraries()) ||
+ (c.isVndk() || inList(c.Name(), llndkLibraries) ||
(c.sabi != nil && c.sabi.Properties.CreateSAbiDumps)) {
mctx.VisitDirectDeps(func(m blueprint.Module) {
tag := mctx.OtherModuleDependencyTag(m)