blob: 0cf21b65a70a2812604b3f889dc16b06b0063b4c [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
Joe Onoratob4638c12021-10-27 15:47:06 -070036// libraries with placeholder implementations of everything for use at build time
Dan Albert914449f2016-06-17 16:45:24 -070037// 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() {
Spandan Das0773a602022-08-16 00:55:11 +000060 RegisterNdkModuleTypes(android.InitRegistrationContext)
Colin Crosscc0ce802019-04-02 16:14:11 -070061 pctx.Import("android/soong/android")
Dan Albert914449f2016-06-17 16:45:24 -070062}
63
Spandan Das0773a602022-08-16 00:55:11 +000064func RegisterNdkModuleTypes(ctx android.RegistrationContext) {
65 ctx.RegisterModuleType("ndk_headers", ndkHeadersFactory)
66 ctx.RegisterModuleType("ndk_library", NdkLibraryFactory)
67 ctx.RegisterModuleType("versioned_ndk_headers", versionedNdkHeadersFactory)
68 ctx.RegisterModuleType("preprocessed_ndk_headers", preprocessedNdkHeadersFactory)
LaMont Jones0c10e4d2023-05-16 00:58:37 +000069 ctx.RegisterParallelSingletonType("ndk", NdkSingleton)
Spandan Das0773a602022-08-16 00:55:11 +000070}
71
Colin Cross70dda7e2019-10-01 22:05:35 -070072func getNdkInstallBase(ctx android.PathContext) android.InstallPath {
73 return android.PathForNdkInstall(ctx)
Dan Albert914449f2016-06-17 16:45:24 -070074}
75
76// Returns the main install directory for the NDK sysroot. Usable with --sysroot.
Colin Cross70dda7e2019-10-01 22:05:35 -070077func getNdkSysrootBase(ctx android.PathContext) android.InstallPath {
Dan Albert914449f2016-06-17 16:45:24 -070078 return getNdkInstallBase(ctx).Join(ctx, "sysroot")
79}
80
Dan Albert6ab43d82017-12-13 15:05:04 -080081// The base timestamp file depends on the NDK headers and stub shared libraries,
82// but not the static libraries. This distinction is needed because the static
83// libraries themselves might need to depend on the base sysroot.
84func getNdkBaseTimestampFile(ctx android.PathContext) android.WritablePath {
85 return android.PathForOutput(ctx, "ndk_base.timestamp")
86}
87
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -080088// The headers timestamp file depends only on the NDK headers.
89// This is used mainly for .tidy files that do not need any stub libraries.
90func getNdkHeadersTimestampFile(ctx android.PathContext) android.WritablePath {
91 return android.PathForOutput(ctx, "ndk_headers.timestamp")
92}
93
Dan Albert6ab43d82017-12-13 15:05:04 -080094// The full timestamp file depends on the base timestamp *and* the static
95// libraries.
96func getNdkFullTimestampFile(ctx android.PathContext) android.WritablePath {
Dan Albert914449f2016-06-17 16:45:24 -070097 return android.PathForOutput(ctx, "ndk.timestamp")
98}
99
Colin Cross0875c522017-11-28 17:34:01 -0800100func NdkSingleton() android.Singleton {
Dan Albert914449f2016-06-17 16:45:24 -0700101 return &ndkSingleton{}
102}
103
104type ndkSingleton struct{}
105
Colin Cross0875c522017-11-28 17:34:01 -0800106func (n *ndkSingleton) GenerateBuildActions(ctx android.SingletonContext) {
Dan Albert6ab43d82017-12-13 15:05:04 -0800107 var staticLibInstallPaths android.Paths
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -0800108 var headerPaths android.Paths
Colin Cross0875c522017-11-28 17:34:01 -0800109 var installPaths android.Paths
110 var licensePaths android.Paths
111 ctx.VisitAllModules(func(module android.Module) {
Dan Willemsen95f4dbb2017-05-05 23:26:01 -0700112 if m, ok := module.(android.Module); ok && !m.Enabled() {
113 return
114 }
115
Dan Albert914449f2016-06-17 16:45:24 -0700116 if m, ok := module.(*headerModule); ok {
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -0800117 headerPaths = append(headerPaths, m.installPaths...)
Dan Albert914449f2016-06-17 16:45:24 -0700118 installPaths = append(installPaths, m.installPaths...)
Colin Cross0875c522017-11-28 17:34:01 -0800119 licensePaths = append(licensePaths, m.licensePath)
Dan Albert914449f2016-06-17 16:45:24 -0700120 }
Dan Albert914449f2016-06-17 16:45:24 -0700121
Dan Albert97f9c962018-05-24 15:02:16 -0700122 if m, ok := module.(*versionedHeaderModule); ok {
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -0800123 headerPaths = append(headerPaths, m.installPaths...)
Dan Albert269fab82017-02-15 17:31:33 -0800124 installPaths = append(installPaths, m.installPaths...)
Colin Cross0875c522017-11-28 17:34:01 -0800125 licensePaths = append(licensePaths, m.licensePath)
Dan Albert269fab82017-02-15 17:31:33 -0800126 }
127
Dan Albertcb1b4b22018-05-24 15:06:11 -0700128 if m, ok := module.(*preprocessedHeadersModule); ok {
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -0800129 headerPaths = append(headerPaths, m.installPaths...)
Dan Albertcb1b4b22018-05-24 15:06:11 -0700130 installPaths = append(installPaths, m.installPaths...)
131 licensePaths = append(licensePaths, m.licensePath)
132 }
133
Dan Albert914449f2016-06-17 16:45:24 -0700134 if m, ok := module.(*Module); ok {
Colin Cross31076b32020-10-23 17:22:06 -0700135 if installer, ok := m.installer.(*stubDecorator); ok && m.library.buildStubs() {
Dan Albert914449f2016-06-17 16:45:24 -0700136 installPaths = append(installPaths, installer.installPath)
137 }
Dan Albertf563d252017-10-13 00:29:00 -0700138
139 if library, ok := m.linker.(*libraryDecorator); ok {
Colin Cross0875c522017-11-28 17:34:01 -0800140 if library.ndkSysrootPath != nil {
Dan Albert6ab43d82017-12-13 15:05:04 -0800141 staticLibInstallPaths = append(
142 staticLibInstallPaths, library.ndkSysrootPath)
Dan Albertf563d252017-10-13 00:29:00 -0700143 }
144 }
Dan Albert5b0d4f32023-04-04 23:22:11 +0000145
146 if object, ok := m.linker.(*objectLinker); ok {
147 if object.ndkSysrootPath != nil {
148 staticLibInstallPaths = append(
149 staticLibInstallPaths, object.ndkSysrootPath)
150 }
151 }
Dan Albert914449f2016-06-17 16:45:24 -0700152 }
153 })
154
Ryan Prichardb1c9d402018-08-20 22:06:01 -0700155 // Include only a single copy of each license file. The Bionic NOTICE is
156 // long and is referenced by multiple Bionic modules.
157 licensePaths = android.FirstUniquePaths(licensePaths)
158
Dan Albertc6345fb2016-10-20 01:36:11 -0700159 combinedLicense := getNdkInstallBase(ctx).Join(ctx, "NOTICE")
Colin Cross0875c522017-11-28 17:34:01 -0800160 ctx.Build(pctx, android.BuildParams{
Colin Cross67a5c132017-05-09 13:45:28 -0700161 Rule: android.Cat,
162 Description: "combine licenses",
Colin Cross0875c522017-11-28 17:34:01 -0800163 Output: combinedLicense,
Colin Cross67a5c132017-05-09 13:45:28 -0700164 Inputs: licensePaths,
Dan Albertc6345fb2016-10-20 01:36:11 -0700165 })
166
Dan Albert49227032021-06-15 13:25:25 -0700167 baseDepPaths := append(installPaths, combinedLicense)
Dan Albertc6345fb2016-10-20 01:36:11 -0700168
Colin Cross0875c522017-11-28 17:34:01 -0800169 ctx.Build(pctx, android.BuildParams{
Dan Albert49227032021-06-15 13:25:25 -0700170 Rule: android.Touch,
171 Output: getNdkBaseTimestampFile(ctx),
172 Implicits: baseDepPaths,
173 Validation: getNdkAbiDiffTimestampFile(ctx),
Dan Albert6ab43d82017-12-13 15:05:04 -0800174 })
175
Chih-Hung Hsieh5b721532021-11-30 17:31:23 -0800176 ctx.Build(pctx, android.BuildParams{
177 Rule: android.Touch,
178 Output: getNdkHeadersTimestampFile(ctx),
179 Implicits: headerPaths,
180 })
181
Dan Albert6ab43d82017-12-13 15:05:04 -0800182 fullDepPaths := append(staticLibInstallPaths, getNdkBaseTimestampFile(ctx))
183
Dan Albertf1d14c72020-07-30 14:32:55 -0700184 // There's a phony "ndk" rule defined in core/main.mk that depends on this.
185 // `m ndk` will build the sysroots for the architectures in the current
186 // lunch target. `build/soong/scripts/build-ndk-prebuilts.sh` will build the
187 // sysroots for all the NDK architectures and package them so they can be
188 // imported into the NDK's build.
Dan Albert6ab43d82017-12-13 15:05:04 -0800189 ctx.Build(pctx, android.BuildParams{
190 Rule: android.Touch,
191 Output: getNdkFullTimestampFile(ctx),
192 Implicits: fullDepPaths,
Dan Albert914449f2016-06-17 16:45:24 -0700193 })
194}