blob: c7ba5886dbcffd9a4addd530b733c7aa02e02af2 [file] [log] [blame]
Dan Albert914449f2016-06-17 16:45:24 -07001// Copyright 2016 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cc
16
17// The platform needs to provide the following artifacts for the NDK:
18// 1. Bionic headers.
19// 2. Platform API headers.
20// 3. NDK stub shared libraries.
21// 4. Bionic static libraries.
22//
23// TODO(danalbert): All of the above need to include NOTICE files.
24//
25// Components 1 and 2: Headers
26// The bionic and platform API headers are generalized into a single
27// `ndk_headers` rule. This rule has a `from` property that indicates a base
28// directory from which headers are to be taken, and a `to` property that
29// indicates where in the sysroot they should reside relative to usr/include.
30// There is also a `srcs` property that is glob compatible for specifying which
31// headers to include.
32//
33// Component 3: Stub Libraries
34// The shared libraries in the NDK are not the actual shared libraries they
35// refer to (to prevent people from accidentally loading them), but stub
36// libraries with dummy implementations of everything for use at build time
37// only.
38//
39// Since we don't actually need to know anything about the stub libraries aside
40// from a list of functions and globals to be exposed, we can create these for
41// every platform level in the current tree. This is handled by the
42// ndk_library rule.
43//
44// Component 4: Static Libraries
45// The NDK only provides static libraries for bionic, not the platform APIs.
46// Since these need to be the actual implementation, we can't build old versions
47// in the current platform tree. As such, legacy versions are checked in
48// prebuilt to development/ndk, and a current version is built and archived as
49// part of the platform build. The platfrom already builds these libraries, our
50// NDK build rules only need to archive them for retrieval so they can be added
51// to the prebuilts.
52//
53// TODO(danalbert): Write `ndk_static_library` rule.
54
55import (
Dan Albert914449f2016-06-17 16:45:24 -070056 "android/soong/android"
57)
58
59func init() {
Colin Cross798bfce2016-10-12 14:28:16 -070060 android.RegisterModuleType("ndk_headers", ndkHeadersFactory)
61 android.RegisterModuleType("ndk_library", ndkLibraryFactory)
Dan Albert269fab82017-02-15 17:31:33 -080062 android.RegisterModuleType("preprocessed_ndk_headers", preprocessedNdkHeadersFactory)
Colin Cross798bfce2016-10-12 14:28:16 -070063 android.RegisterSingletonType("ndk", NdkSingleton)
Dan Albert914449f2016-06-17 16:45:24 -070064
65 pctx.Import("android/soong/common")
66}
67
Dan Albertc6345fb2016-10-20 01:36:11 -070068func getNdkInstallBase(ctx android.PathContext) android.OutputPath {
Dan Albert914449f2016-06-17 16:45:24 -070069 return android.PathForOutput(ctx, "ndk")
70}
71
72// Returns the main install directory for the NDK sysroot. Usable with --sysroot.
Dan Albertc6345fb2016-10-20 01:36:11 -070073func getNdkSysrootBase(ctx android.PathContext) android.OutputPath {
Dan Albert914449f2016-06-17 16:45:24 -070074 return getNdkInstallBase(ctx).Join(ctx, "sysroot")
75}
76
Dan Albert6ab43d82017-12-13 15:05:04 -080077// The base timestamp file depends on the NDK headers and stub shared libraries,
78// but not the static libraries. This distinction is needed because the static
79// libraries themselves might need to depend on the base sysroot.
80func getNdkBaseTimestampFile(ctx android.PathContext) android.WritablePath {
81 return android.PathForOutput(ctx, "ndk_base.timestamp")
82}
83
84// The full timestamp file depends on the base timestamp *and* the static
85// libraries.
86func getNdkFullTimestampFile(ctx android.PathContext) android.WritablePath {
Dan Albert914449f2016-06-17 16:45:24 -070087 return android.PathForOutput(ctx, "ndk.timestamp")
88}
89
Colin Cross0875c522017-11-28 17:34:01 -080090func NdkSingleton() android.Singleton {
Dan Albert914449f2016-06-17 16:45:24 -070091 return &ndkSingleton{}
92}
93
94type ndkSingleton struct{}
95
Colin Cross0875c522017-11-28 17:34:01 -080096func (n *ndkSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Dan Albert6ab43d82017-12-13 15:05:04 -080097 var staticLibInstallPaths android.Paths
Colin Cross0875c522017-11-28 17:34:01 -080098 var installPaths android.Paths
99 var licensePaths android.Paths
100 ctx.VisitAllModules(func(module android.Module) {
Dan Willemsen95f4dbb2017-05-05 23:26:01 -0700101 if m, ok := module.(android.Module); ok && !m.Enabled() {
102 return
103 }
104
Dan Albert914449f2016-06-17 16:45:24 -0700105 if m, ok := module.(*headerModule); ok {
106 installPaths = append(installPaths, m.installPaths...)
Colin Cross0875c522017-11-28 17:34:01 -0800107 licensePaths = append(licensePaths, m.licensePath)
Dan Albert914449f2016-06-17 16:45:24 -0700108 }
Dan Albert914449f2016-06-17 16:45:24 -0700109
Dan Albert269fab82017-02-15 17:31:33 -0800110 if m, ok := module.(*preprocessedHeaderModule); ok {
111 installPaths = append(installPaths, m.installPaths...)
Colin Cross0875c522017-11-28 17:34:01 -0800112 licensePaths = append(licensePaths, m.licensePath)
Dan Albert269fab82017-02-15 17:31:33 -0800113 }
114
Dan Albert914449f2016-06-17 16:45:24 -0700115 if m, ok := module.(*Module); ok {
Colin Crossb916a382016-07-29 17:28:03 -0700116 if installer, ok := m.installer.(*stubDecorator); ok {
Dan Albert914449f2016-06-17 16:45:24 -0700117 installPaths = append(installPaths, installer.installPath)
118 }
Dan Albertf563d252017-10-13 00:29:00 -0700119
120 if library, ok := m.linker.(*libraryDecorator); ok {
Colin Cross0875c522017-11-28 17:34:01 -0800121 if library.ndkSysrootPath != nil {
Dan Albert6ab43d82017-12-13 15:05:04 -0800122 staticLibInstallPaths = append(
123 staticLibInstallPaths, library.ndkSysrootPath)
Dan Albertf563d252017-10-13 00:29:00 -0700124 }
125 }
Dan Albert914449f2016-06-17 16:45:24 -0700126 }
127 })
128
Dan Albertc6345fb2016-10-20 01:36:11 -0700129 combinedLicense := getNdkInstallBase(ctx).Join(ctx, "NOTICE")
Colin Cross0875c522017-11-28 17:34:01 -0800130 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700131 Rule: android.Cat,
132 Description: "combine licenses",
Colin Cross0875c522017-11-28 17:34:01 -0800133 Output: combinedLicense,
Colin Cross67a5c132017-05-09 13:45:28 -0700134 Inputs: licensePaths,
Dan Albertc6345fb2016-10-20 01:36:11 -0700135 })
136
Dan Albert6ab43d82017-12-13 15:05:04 -0800137 baseDepPaths := append(installPaths, combinedLicense)
Dan Albertc6345fb2016-10-20 01:36:11 -0700138
Dan Albert914449f2016-06-17 16:45:24 -0700139 // There's a dummy "ndk" rule defined in ndk/Android.mk that depends on
140 // this. `m ndk` will build the sysroots.
Colin Cross0875c522017-11-28 17:34:01 -0800141 ctx.Build(pctx, android.BuildParams{
Dan Albert914449f2016-06-17 16:45:24 -0700142 Rule: android.Touch,
Dan Albert6ab43d82017-12-13 15:05:04 -0800143 Output: getNdkBaseTimestampFile(ctx),
144 Implicits: baseDepPaths,
145 })
146
147 fullDepPaths := append(staticLibInstallPaths, getNdkBaseTimestampFile(ctx))
148
149 ctx.Build(pctx, android.BuildParams{
150 Rule: android.Touch,
151 Output: getNdkFullTimestampFile(ctx),
152 Implicits: fullDepPaths,
Dan Albert914449f2016-06-17 16:45:24 -0700153 })
154}