blob: 5f30d3d6e9bd33ae626dca30ba03c5e379e38691 [file] [log] [blame]
Colin Cross4d9c2d12016-07-29 12:48:20 -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
17import (
18 "fmt"
19 "path/filepath"
Yi Kong950e0ba2019-10-08 02:27:17 -070020 "regexp"
Peter Collingbourneb0e61432019-07-22 16:36:06 -070021 "strconv"
Colin Cross4d9c2d12016-07-29 12:48:20 -070022 "strings"
23
Colin Cross4b963f82016-09-29 14:06:02 -070024 "github.com/google/blueprint/proptools"
25
Colin Cross4d9c2d12016-07-29 12:48:20 -070026 "android/soong/android"
Colin Crossb98c8b02016-07-29 13:44:28 -070027 "android/soong/cc/config"
Colin Cross4d9c2d12016-07-29 12:48:20 -070028)
29
Ivan Lozanod094d402019-11-26 10:32:50 -080030var (
31 allowedManualInterfacePaths = []string{"vendor/", "hardware/"}
32)
33
Colin Cross4d9c2d12016-07-29 12:48:20 -070034// This file contains the basic C/C++/assembly to .o compliation steps
35
36type BaseCompilerProperties struct {
37 // list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files.
Colin Cross068e0fe2016-12-13 15:23:47 -080038 // srcs may reference the outputs of other modules that produce source files like genrule
39 // or filegroup using the syntax ":module".
Colin Cross27b922f2019-03-04 22:35:41 -080040 Srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070041
42 // list of source files that should not be used to build the C/C++ module.
43 // This is most useful in the arch/multilib variants to remove non-common files
Colin Cross27b922f2019-03-04 22:35:41 -080044 Exclude_srcs []string `android:"path,arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070045
46 // list of module-specific flags that will be used for C and C++ compiles.
47 Cflags []string `android:"arch_variant"`
48
49 // list of module-specific flags that will be used for C++ compiles
50 Cppflags []string `android:"arch_variant"`
51
52 // list of module-specific flags that will be used for C compiles
53 Conlyflags []string `android:"arch_variant"`
54
55 // list of module-specific flags that will be used for .S compiles
56 Asflags []string `android:"arch_variant"`
57
58 // list of module-specific flags that will be used for C and C++ compiles when
59 // compiling with clang
60 Clang_cflags []string `android:"arch_variant"`
61
62 // list of module-specific flags that will be used for .S compiles when
63 // compiling with clang
64 Clang_asflags []string `android:"arch_variant"`
65
Colin Cross4d9c2d12016-07-29 12:48:20 -070066 // the instruction set architecture to use to compile the C/C++
67 // module.
Dan Willemsen5922f3c2017-10-25 15:20:50 -070068 Instruction_set *string `android:"arch_variant"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070069
70 // list of directories relative to the root of the source tree that will
71 // be added to the include path using -I.
72 // If possible, don't use this. If adding paths from the current directory use
73 // local_include_dirs, if adding paths from other modules use export_include_dirs in
74 // that module.
Colin Crossccf01e72017-04-26 17:01:07 -070075 Include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070076
77 // list of directories relative to the Blueprints file that will
78 // be added to the include path using -I
Dan Willemsen59339a22018-07-22 21:18:45 -070079 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
Colin Cross4d9c2d12016-07-29 12:48:20 -070080
Dan Albert899c23e2018-12-06 11:04:03 -080081 // Add the directory containing the Android.bp file to the list of include
82 // directories. Defaults to true.
83 Include_build_directory *bool
84
Colin Cross4d9c2d12016-07-29 12:48:20 -070085 // list of generated sources to compile. These are the names of gensrcs or
86 // genrule modules.
87 Generated_sources []string `android:"arch_variant"`
88
Jooyung Hanac07f882020-07-05 03:54:35 +090089 // list of generated sources that should not be used to build the C/C++ module.
90 // This is most useful in the arch/multilib variants to remove non-common files
91 Exclude_generated_sources []string `android:"arch_variant"`
92
Colin Cross4d9c2d12016-07-29 12:48:20 -070093 // list of generated headers to add to the include path. These are the names
94 // of genrule modules.
95 Generated_headers []string `android:"arch_variant"`
96
97 // pass -frtti instead of -fno-rtti
98 Rtti *bool
99
Dan Albert043833c2017-02-03 16:13:38 -0800100 // C standard version to use. Can be a specific version (such as "gnu11"),
101 // "experimental" (which will use draft versions like C1x when available),
102 // or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800103 C_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800104
105 // C++ standard version to use. Can be a specific version (such as
106 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
107 // available), or the empty string (which will use the default).
Nan Zhang0007d812017-11-07 10:57:05 -0800108 Cpp_std *string
Dan Albert043833c2017-02-03 16:13:38 -0800109
Colin Cross948f0cb2016-10-17 14:24:56 -0700110 // if set to false, use -std=c++* instead of -std=gnu++*
111 Gnu_extensions *bool
112
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700113 Yacc *YaccProperties
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200114 Lex *LexProperties
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700115
Dan Willemsene1240db2016-11-03 14:28:51 -0700116 Aidl struct {
117 // list of directories that will be added to the aidl include paths.
118 Include_dirs []string
119
120 // list of directories relative to the Blueprints file that will
121 // be added to the aidl include paths.
122 Local_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100123
124 // whether to generate traces (for systrace) for this interface
125 Generate_traces *bool
Jooyung Hane197d8b2021-01-05 10:33:16 +0900126
127 // list of flags that will be passed to the AIDL compiler
128 Flags []string
Dan Willemsene1240db2016-11-03 14:28:51 -0700129 }
130
Colin Cross2a252be2017-05-01 17:37:24 -0700131 Renderscript struct {
132 // list of directories that will be added to the llvm-rs-cc include paths
133 Include_dirs []string
134
135 // list of flags that will be passed to llvm-rs-cc
136 Flags []string
137
138 // Renderscript API level to target
139 Target_api *string
140 }
141
Colin Cross4d9c2d12016-07-29 12:48:20 -0700142 Debug, Release struct {
143 // list of module-specific flags that will be used for C and C++ compiles in debug or
144 // release builds
145 Cflags []string `android:"arch_variant"`
146 } `android:"arch_variant"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700147
148 Target struct {
Justin Yun63e9ec72020-10-29 16:49:43 +0900149 Vendor, Product struct {
150 // list of source files that should only be used in vendor or
151 // product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800152 Srcs []string `android:"path"`
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700153
Justin Yun63e9ec72020-10-29 16:49:43 +0900154 // list of source files that should not be used to build vendor
155 // or product variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800156 Exclude_srcs []string `android:"path"`
Jiyong Parka622de82017-08-10 13:33:27 +0900157
Justin Yun63e9ec72020-10-29 16:49:43 +0900158 // List of additional cflags that should be used to build vendor
159 // or product variant of the C/C++ module.
Jiyong Parka622de82017-08-10 13:33:27 +0900160 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900161
Justin Yun63e9ec72020-10-29 16:49:43 +0900162 // list of generated sources that should not be used to build
163 // vendor or product variant of the C/C++ module.
Jooyung Hanac07f882020-07-05 03:54:35 +0900164 Exclude_generated_sources []string
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700165 }
Jiyong Parkf9332f12018-02-01 00:54:12 +0900166 Recovery struct {
167 // list of source files that should only be used in the
168 // recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800169 Srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900170
171 // list of source files that should not be used to
172 // build the recovery variant of the C/C++ module.
Colin Cross27b922f2019-03-04 22:35:41 -0800173 Exclude_srcs []string `android:"path"`
Jiyong Parkf9332f12018-02-01 00:54:12 +0900174
175 // List of additional cflags that should be used to build the recovery
176 // variant of the C/C++ module.
177 Cflags []string
Jooyung Hanac07f882020-07-05 03:54:35 +0900178
179 // list of generated sources that should not be used to
180 // build the recovery variant of the C/C++ module.
181 Exclude_generated_sources []string
Jiyong Parkf9332f12018-02-01 00:54:12 +0900182 }
Yifan Hong6da33c22020-10-27 15:01:21 -0700183 Vendor_ramdisk struct {
184 // list of source files that should not be used to
185 // build the vendor ramdisk variant of the C/C++ module.
186 Exclude_srcs []string `android:"path"`
187
188 // List of additional cflags that should be used to build the vendor ramdisk
189 // variant of the C/C++ module.
190 Cflags []string
191 }
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700192 }
Colin Cross10d22312017-05-03 11:01:58 -0700193
Colin Cross38f794e2017-09-07 10:53:07 -0700194 Proto struct {
195 // Link statically against the protobuf runtime
Nan Zhang0007d812017-11-07 10:57:05 -0800196 Static *bool `android:"arch_variant"`
Colin Cross38f794e2017-09-07 10:53:07 -0700197 } `android:"arch_variant"`
198
Colin Cross10d22312017-05-03 11:01:58 -0700199 // Stores the original list of source files before being cleared by library reuse
200 OriginalSrcs []string `blueprint:"mutated"`
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800201
202 // Build and link with OpenMP
203 Openmp *bool `android:"arch_variant"`
Jooyung Hanc87a0592020-03-02 17:44:33 +0900204
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900205 // Deprecated.
Jooyung Hanc87a0592020-03-02 17:44:33 +0900206 // Adds __ANDROID_APEX_<APEX_MODULE_NAME>__ macro defined for apex variants in addition to __ANDROID_APEX__
207 Use_apex_name_macro *bool
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900208
209 // Adds two macros for apex variants in addition to __ANDROID_APEX__
210 // * __ANDROID_APEX_COM_ANDROID_FOO__
211 // * __ANDROID_APEX_NAME__="com.android.foo"
212 UseApexNameMacro bool `blueprint:"mutated"`
Colin Cross4d9c2d12016-07-29 12:48:20 -0700213}
214
Colin Crossb916a382016-07-29 17:28:03 -0700215func NewBaseCompiler() *baseCompiler {
216 return &baseCompiler{}
217}
218
Colin Cross4d9c2d12016-07-29 12:48:20 -0700219type baseCompiler struct {
220 Properties BaseCompilerProperties
Colin Cross38f794e2017-09-07 10:53:07 -0700221 Proto android.ProtoProperties
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800222 cFlagsDeps android.Paths
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800223 pathDeps android.Paths
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800224 flags builderFlags
Colin Crossf18e1102017-11-16 14:33:08 -0800225
226 // Sources that were passed to the C/C++ compiler
227 srcs android.Paths
228
229 // Sources that were passed in the Android.bp file, including generated sources generated by
230 // other modules and filegroups. May include source files that have not yet been translated to
231 // C/C++ (.aidl, .proto, etc.)
232 srcsBeforeGen android.Paths
Colin Cross4d9c2d12016-07-29 12:48:20 -0700233}
234
235var _ compiler = (*baseCompiler)(nil)
236
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800237type CompiledInterface interface {
238 Srcs() android.Paths
239}
240
241func (compiler *baseCompiler) Srcs() android.Paths {
Nan Zhange42777a2018-03-27 16:19:42 -0700242 return append(android.Paths{}, compiler.srcs...)
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800243}
244
Colin Cross4d9c2d12016-07-29 12:48:20 -0700245func (compiler *baseCompiler) appendCflags(flags []string) {
246 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
247}
248
249func (compiler *baseCompiler) appendAsflags(flags []string) {
250 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
251}
252
Colin Cross42742b82016-08-01 13:20:05 -0700253func (compiler *baseCompiler) compilerProps() []interface{} {
Colin Cross0feb1692016-11-03 14:38:52 -0700254 return []interface{}{&compiler.Properties, &compiler.Proto}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700255}
256
Colin Cross42742b82016-08-01 13:20:05 -0700257func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700258
Colin Cross37047f12016-12-13 17:06:13 -0800259func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700260 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
Jooyung Hanac07f882020-07-05 03:54:35 +0900261 deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_generated_sources)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700262 deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
263
Colin Crossfe17f6f2019-03-28 19:30:56 -0700264 android.ProtoDeps(ctx, &compiler.Proto)
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700265 if compiler.hasSrcExt(".proto") {
Nan Zhang0007d812017-11-07 10:57:05 -0800266 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
Colin Cross0c461f12016-10-20 16:11:43 -0700267 }
268
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800269 if Bool(compiler.Properties.Openmp) {
270 deps.StaticLibs = append(deps.StaticLibs, "libomp")
271 }
272
Colin Cross4d9c2d12016-07-29 12:48:20 -0700273 return deps
274}
275
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900276func (compiler *baseCompiler) useApexNameMacro() bool {
277 return Bool(compiler.Properties.Use_apex_name_macro) || compiler.Properties.UseApexNameMacro
278}
279
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800280// Return true if the module is in the WarningAllowedProjects.
281func warningsAreAllowed(subdir string) bool {
282 subdir += "/"
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800283 return android.HasAnyPrefix(subdir, config.WarningAllowedProjects)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800284}
285
Colin Cross571cccf2019-02-04 11:22:08 -0800286func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
287 getNamedMapForConfig(ctx.Config(), key).Store(module, true)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800288}
289
Colin Cross4d9c2d12016-07-29 12:48:20 -0700290// Create a Flags struct that collects the compile flags from global values,
291// per-target values, module type values, and per-module Blueprints properties
Colin Crossf18e1102017-11-16 14:33:08 -0800292func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
Colin Crossb98c8b02016-07-29 13:44:28 -0700293 tc := ctx.toolchain()
Yi Kong950e0ba2019-10-08 02:27:17 -0700294 modulePath := android.PathForModuleSrc(ctx).String()
Colin Cross4d9c2d12016-07-29 12:48:20 -0700295
Colin Cross8a497952019-03-05 22:25:09 -0800296 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
Colin Crossf18e1102017-11-16 14:33:08 -0800297 compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
298
Colin Cross4d9c2d12016-07-29 12:48:20 -0700299 CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
300 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
301 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
302 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900303 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
Justin Yun63e9ec72020-10-29 16:49:43 +0900304 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900305 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
Yifan Hong6da33c22020-10-27 15:01:21 -0700306 CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700307
Colin Cross0b9f31f2019-02-28 11:00:01 -0800308 esc := proptools.NinjaAndShellEscapeList
Colin Cross4b963f82016-09-29 14:06:02 -0700309
Colin Cross4af21ed2019-11-04 09:37:55 -0800310 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Cflags)...)
311 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
312 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
313 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
314 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700315
316 flags.Yacc = compiler.Properties.Yacc
Matthias Maennich22fd4d12020-07-15 10:58:56 +0200317 flags.Lex = compiler.Properties.Lex
Colin Cross4d9c2d12016-07-29 12:48:20 -0700318
319 // Include dir cflags
Colin Cross4d9c2d12016-07-29 12:48:20 -0700320 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700321 if len(localIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700322 f := includeDirsToFlags(localIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800323 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
324 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700325 }
326 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
327 if len(rootIncludeDirs) > 0 {
Colin Crossdad8c952017-04-26 14:55:27 -0700328 f := includeDirsToFlags(rootIncludeDirs)
Colin Cross4af21ed2019-11-04 09:37:55 -0800329 flags.Local.CommonFlags = append(flags.Local.CommonFlags, f)
330 flags.Local.YasmFlags = append(flags.Local.YasmFlags, f)
Dan Willemsen273af7f2016-11-03 15:53:42 -0700331 }
Colin Cross4d9c2d12016-07-29 12:48:20 -0700332
Dan Albert899c23e2018-12-06 11:04:03 -0800333 if compiler.Properties.Include_build_directory == nil ||
334 *compiler.Properties.Include_build_directory {
Yi Kong950e0ba2019-10-08 02:27:17 -0700335 flags.Local.CommonFlags = append(flags.Local.CommonFlags, "-I"+modulePath)
336 flags.Local.YasmFlags = append(flags.Local.YasmFlags, "-I"+modulePath)
Dan Albert899c23e2018-12-06 11:04:03 -0800337 }
Colin Crossc3199482017-03-30 15:03:04 -0700338
Colin Cross87dd9632017-11-03 13:31:05 -0700339 if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
340 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
341 "${config.CommonGlobalIncludes}",
Orion Hodson5cffce12020-05-27 12:47:32 +0000342 tc.IncludeFlags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700343 }
344
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700345 if ctx.useSdk() {
Dan Albertfac114b2018-11-14 21:22:00 -0800346 // TODO: Switch to --sysroot.
Colin Cross4d9c2d12016-07-29 12:48:20 -0700347 // The NDK headers are installed to a common sysroot. While a more
348 // typical Soong approach would be to only make the headers for the
349 // library you're using available, we're trying to emulate the NDK
350 // behavior here, and the NDK always has all the NDK headers available.
Colin Crossc3199482017-03-30 15:03:04 -0700351 flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
Colin Cross4d9c2d12016-07-29 12:48:20 -0700352 "-isystem "+getCurrentIncludePath(ctx).String(),
Chih-Hung Hsieh1e7d1bf2018-03-15 18:44:57 -0700353 "-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700354 }
355
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700356 if ctx.useVndk() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800357 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_VNDK__")
Dan Willemsenb916b802017-03-19 13:44:32 -0700358 }
359
Jiyong Parkd54aee52018-06-09 01:32:54 +0900360 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800361 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_RECOVERY__")
Jiyong Parkd54aee52018-06-09 01:32:54 +0900362 }
363
Colin Crosse07f2312020-08-13 11:24:56 -0700364 if ctx.apexVariationName() != "" {
Jooyung Hanc87a0592020-03-02 17:44:33 +0900365 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX__")
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900366 if compiler.useApexNameMacro() {
Colin Crosse07f2312020-08-13 11:24:56 -0700367 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX_"+makeDefineString(ctx.apexVariationName())+"__")
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900368 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_APEX_NAME__='\""+ctx.apexVariationName()+"\"'")
Jooyung Hanc87a0592020-03-02 17:44:33 +0900369 }
Jooyung Han24282772020-03-21 23:20:55 +0900370 if ctx.Device() {
Dan Albertc8060532020-07-22 22:32:17 -0700371 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Dan Albertb19953d2020-11-17 15:29:36 -0800372 fmt.Sprintf("-D__ANDROID_APEX_MIN_SDK_VERSION__=%d",
Dan Albertc8060532020-07-22 22:32:17 -0700373 ctx.apexSdkVersion().FinalOrFutureInt()))
Jooyung Han24282772020-03-21 23:20:55 +0900374 }
Jiyong Park58e364a2019-01-19 19:24:06 +0900375 }
376
Victor Khimenko1a31f802020-09-17 03:07:31 +0200377 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
378 flags.Global.CommonFlags = append(flags.Global.CommonFlags, "-D__ANDROID_NATIVE_BRIDGE__")
379 }
380
Nan Zhang0007d812017-11-07 10:57:05 -0800381 instructionSet := String(compiler.Properties.Instruction_set)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700382 if flags.RequiredInstructionSet != "" {
383 instructionSet = flags.RequiredInstructionSet
384 }
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700385 instructionSetFlags, err := tc.ClangInstructionSetFlags(instructionSet)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700386 if err != nil {
387 ctx.ModuleErrorf("%s", err)
388 }
389
390 CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
391
392 // TODO: debug
Colin Cross4af21ed2019-11-04 09:37:55 -0800393 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Release.Cflags)...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700394
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700395 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
396 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700397
Colin Cross4af21ed2019-11-04 09:37:55 -0800398 flags.Local.CFlags = config.ClangFilterUnknownCflags(flags.Local.CFlags)
399 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
400 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
401 flags.Local.CppFlags = config.ClangFilterUnknownCflags(flags.Local.CppFlags)
402 flags.Local.ConlyFlags = config.ClangFilterUnknownCflags(flags.Local.ConlyFlags)
403 flags.Local.LdFlags = config.ClangFilterUnknownCflags(flags.Local.LdFlags)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700404
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700405 target := "-target " + tc.ClangTriple()
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700406 if ctx.Os().Class == android.Device {
Jiyong Parkb35a8192020-08-10 15:59:36 +0900407 // When built for the non-updateble part of platform, minSdkVersion doesn't matter.
408 // It matters only when building we are building for modules that can be unbundled.
409 version := "current"
410 if !ctx.isForPlatform() || ctx.isSdkVariant() {
411 version = ctx.minSdkVersion()
412 }
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700413 if version == "" || version == "current" {
Dan Albert0b176c82020-07-23 16:43:25 -0700414 target += strconv.Itoa(android.FutureApiLevelInt)
Peter Collingbourneb0e61432019-07-22 16:36:06 -0700415 } else {
416 target += version
417 }
418 }
419
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700420 gccPrefix := "-B" + config.ToolPath(tc)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700421
Colin Cross4af21ed2019-11-04 09:37:55 -0800422 flags.Global.CFlags = append(flags.Global.CFlags, target, gccPrefix)
423 flags.Global.AsFlags = append(flags.Global.AsFlags, target, gccPrefix)
424 flags.Global.LdFlags = append(flags.Global.LdFlags, target, gccPrefix)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700425
Colin Crossb98c8b02016-07-29 13:44:28 -0700426 hod := "Host"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700427 if ctx.Os().Class == android.Device {
Colin Crossb98c8b02016-07-29 13:44:28 -0700428 hod = "Device"
Colin Cross4d9c2d12016-07-29 12:48:20 -0700429 }
430
Colin Cross4af21ed2019-11-04 09:37:55 -0800431 flags.Global.CommonFlags = append(flags.Global.CommonFlags, instructionSetFlags)
432 flags.Global.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.Global.ConlyFlags...)
433 flags.Global.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.Global.CppFlags...)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700434
Colin Cross4af21ed2019-11-04 09:37:55 -0800435 flags.Global.AsFlags = append(flags.Global.AsFlags, tc.ClangAsflags())
436 flags.Global.CppFlags = append([]string{"${config.CommonClangGlobalCppflags}"}, flags.Global.CppFlags...)
437 flags.Global.CommonFlags = append(flags.Global.CommonFlags,
Dan Willemsen8536d6b2018-10-07 20:54:34 -0700438 tc.ClangCflags(),
439 "${config.CommonClangGlobalCflags}",
440 fmt.Sprintf("${config.%sClangGlobalCflags}", hod))
Colin Cross4d9c2d12016-07-29 12:48:20 -0700441
Yi Kong950e0ba2019-10-08 02:27:17 -0700442 if isThirdParty(modulePath) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800443 flags.Global.CommonFlags = append([]string{"${config.ClangExternalCflags}"}, flags.Global.CommonFlags...)
Yi Kongcc80f8d2018-06-06 14:42:44 -0700444 }
445
Dan Willemsen10db3842018-10-21 18:42:46 -0700446 if tc.Bionic() {
Colin Cross87dd9632017-11-03 13:31:05 -0700447 if Bool(compiler.Properties.Rtti) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800448 flags.Local.CppFlags = append(flags.Local.CppFlags, "-frtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700449 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800450 flags.Local.CppFlags = append(flags.Local.CppFlags, "-fno-rtti")
Colin Cross87dd9632017-11-03 13:31:05 -0700451 }
452 }
453
Colin Cross4af21ed2019-11-04 09:37:55 -0800454 flags.Global.AsFlags = append(flags.Global.AsFlags, "-D__ASSEMBLY__")
Colin Cross87dd9632017-11-03 13:31:05 -0700455
Colin Cross4af21ed2019-11-04 09:37:55 -0800456 flags.Global.CppFlags = append(flags.Global.CppFlags, tc.ClangCppflags())
Colin Cross87dd9632017-11-03 13:31:05 -0700457
Colin Cross4af21ed2019-11-04 09:37:55 -0800458 flags.Global.YasmFlags = append(flags.Global.YasmFlags, tc.YasmFlags())
Colin Cross87dd9632017-11-03 13:31:05 -0700459
Colin Cross4af21ed2019-11-04 09:37:55 -0800460 flags.Global.CommonFlags = append(flags.Global.CommonFlags, tc.ToolchainClangCflags())
Colin Cross4d9c2d12016-07-29 12:48:20 -0700461
Elliott Hughes5789ca92018-02-16 17:15:19 -0800462 cStd := config.CStdVersion
463 if String(compiler.Properties.C_std) == "experimental" {
464 cStd = config.ExperimentalCStdVersion
465 } else if String(compiler.Properties.C_std) != "" {
466 cStd = String(compiler.Properties.C_std)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700467 }
468
Elliott Hughes5789ca92018-02-16 17:15:19 -0800469 cppStd := String(compiler.Properties.Cpp_std)
470 switch String(compiler.Properties.Cpp_std) {
471 case "":
472 cppStd = config.CppStdVersion
473 case "experimental":
474 cppStd = config.ExperimentalCppStdVersion
Elliott Hughes5789ca92018-02-16 17:15:19 -0800475 }
476
Elliott Hughes5789ca92018-02-16 17:15:19 -0800477 if compiler.Properties.Gnu_extensions != nil && *compiler.Properties.Gnu_extensions == false {
478 cStd = gnuToCReplacer.Replace(cStd)
479 cppStd = gnuToCReplacer.Replace(cppStd)
480 }
481
Colin Cross4af21ed2019-11-04 09:37:55 -0800482 flags.Local.ConlyFlags = append([]string{"-std=" + cStd}, flags.Local.ConlyFlags...)
483 flags.Local.CppFlags = append([]string{"-std=" + cppStd}, flags.Local.CppFlags...)
Elliott Hughes5789ca92018-02-16 17:15:19 -0800484
Justin Yun63e9ec72020-10-29 16:49:43 +0900485 if ctx.inVendor() {
486 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
487 }
488
489 if ctx.inProduct() {
Justin Yun6977e8a2020-10-29 18:24:11 +0900490 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
Jiyong Parka622de82017-08-10 13:33:27 +0900491 }
492
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900493 if ctx.inRecovery() {
Colin Cross4af21ed2019-11-04 09:37:55 -0800494 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
Jiyong Park4a2dcb52018-05-24 16:44:14 +0900495 }
496
Yifan Hong6da33c22020-10-27 15:01:21 -0700497 if ctx.inVendorRamdisk() {
498 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cflags)...)
499 }
500
Colin Cross4d9c2d12016-07-29 12:48:20 -0700501 // We can enforce some rules more strictly in the code we own. strict
502 // indicates if this is code that we can be stricter with. If we have
503 // rules that we want to apply to *our* code (but maybe can't for
504 // vendor/device specific things), we could extend this to be a ternary
505 // value.
506 strict := true
Yi Kong950e0ba2019-10-08 02:27:17 -0700507 if strings.HasPrefix(modulePath, "external/") {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700508 strict = false
509 }
510
511 // Can be used to make some annotations stricter for code we can fix
512 // (such as when we mark functions as deprecated).
513 if strict {
Colin Cross4af21ed2019-11-04 09:37:55 -0800514 flags.Global.CFlags = append(flags.Global.CFlags, "-DANDROID_STRICT")
Colin Cross4d9c2d12016-07-29 12:48:20 -0700515 }
516
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700517 if compiler.hasSrcExt(".proto") {
Colin Cross0c461f12016-10-20 16:11:43 -0700518 flags = protoFlags(ctx, flags, &compiler.Proto)
519 }
520
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700521 if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800522 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700523 "-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
524 }
525
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700526 if compiler.hasSrcExt(".mc") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800527 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsen4f1c3d42017-09-09 01:15:26 -0700528 "-I"+android.PathForModuleGen(ctx, "windmc", ctx.ModuleDir()).String())
529 }
530
Dan Willemsene1240db2016-11-03 14:28:51 -0700531 if compiler.hasSrcExt(".aidl") {
Jooyung Hane197d8b2021-01-05 10:33:16 +0900532 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
Dan Willemsene1240db2016-11-03 14:28:51 -0700533 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
534 localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
535 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
536 }
537 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
538 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
539 flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
540 }
541
Martijn Coeneneab15642018-03-09 09:29:59 +0100542 if Bool(compiler.Properties.Aidl.Generate_traces) {
543 flags.aidlFlags = append(flags.aidlFlags, "-t")
544 }
545
Colin Cross4af21ed2019-11-04 09:37:55 -0800546 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Dan Willemsene1240db2016-11-03 14:28:51 -0700547 "-I"+android.PathForModuleGen(ctx, "aidl").String())
548 }
549
Jeff Vander Stoepd6126272019-07-15 19:08:37 -0700550 if compiler.hasSrcExt(".rscript") || compiler.hasSrcExt(".fs") {
Colin Cross2a252be2017-05-01 17:37:24 -0700551 flags = rsFlags(ctx, flags, &compiler.Properties)
552 }
553
Inseob Kim21f26902018-09-06 00:55:20 +0900554 if compiler.hasSrcExt(".sysprop") {
Colin Cross4af21ed2019-11-04 09:37:55 -0800555 flags.Local.CommonFlags = append(flags.Local.CommonFlags,
Inseob Kim21f26902018-09-06 00:55:20 +0900556 "-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
557 }
558
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800559 if len(compiler.Properties.Srcs) > 0 {
560 module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
Colin Cross4af21ed2019-11-04 09:37:55 -0800561 if inList("-Wno-error", flags.Local.CFlags) || inList("-Wno-error", flags.Local.CppFlags) {
Colin Cross571cccf2019-02-04 11:22:08 -0800562 addToModuleList(ctx, modulesUsingWnoErrorKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800563 } else if !inList("-Werror", flags.Local.CFlags) && !inList("-Werror", flags.Local.CppFlags) {
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800564 if warningsAreAllowed(ctx.ModuleDir()) {
Colin Cross571cccf2019-02-04 11:22:08 -0800565 addToModuleList(ctx, modulesAddedWallKey, module)
Colin Cross4af21ed2019-11-04 09:37:55 -0800566 flags.Local.CFlags = append([]string{"-Wall"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800567 } else {
Colin Cross4af21ed2019-11-04 09:37:55 -0800568 flags.Local.CFlags = append([]string{"-Wall", "-Werror"}, flags.Local.CFlags...)
Chih-Hung Hsieh64a38dc2017-11-14 14:09:14 -0800569 }
570 }
571 }
572
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800573 if Bool(compiler.Properties.Openmp) {
Colin Cross4af21ed2019-11-04 09:37:55 -0800574 flags.Local.CFlags = append(flags.Local.CFlags, "-fopenmp")
Pirama Arumuga Nainarfadb7b52017-12-19 23:08:09 -0800575 }
576
Colin Cross440e0d02020-06-11 11:32:11 -0700577 // Exclude directories from manual binder interface allowed list.
Ivan Lozanod094d402019-11-26 10:32:50 -0800578 //TODO(b/145621474): Move this check into IInterface.h when clang-tidy no longer uses absolute paths.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800579 if android.HasAnyPrefix(ctx.ModuleDir(), allowedManualInterfacePaths) {
Ivan Lozanod094d402019-11-26 10:32:50 -0800580 flags.Local.CFlags = append(flags.Local.CFlags, "-DDO_NOT_CHECK_MANUAL_BINDER_INTERFACES")
581 }
582
Colin Cross4d9c2d12016-07-29 12:48:20 -0700583 return flags
584}
585
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700586func (compiler *baseCompiler) hasSrcExt(ext string) bool {
Colin Crossf18e1102017-11-16 14:33:08 -0800587 for _, src := range compiler.srcsBeforeGen {
588 if src.Ext() == ext {
589 return true
590 }
591 }
Colin Cross0c461f12016-10-20 16:11:43 -0700592 for _, src := range compiler.Properties.Srcs {
Dan Willemsene1a3ce32016-11-02 20:44:08 -0700593 if filepath.Ext(src) == ext {
Colin Cross0c461f12016-10-20 16:11:43 -0700594 return true
595 }
596 }
Colin Cross10d22312017-05-03 11:01:58 -0700597 for _, src := range compiler.Properties.OriginalSrcs {
598 if filepath.Ext(src) == ext {
599 return true
600 }
601 }
Colin Cross0c461f12016-10-20 16:11:43 -0700602
603 return false
604}
605
Colin Crossaede88c2020-08-11 12:17:01 -0700606func (compiler *baseCompiler) uniqueApexVariations() bool {
Jooyung Hanc2a1d702020-08-18 15:37:17 +0900607 return compiler.useApexNameMacro()
Colin Crossaede88c2020-08-11 12:17:01 -0700608}
609
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700610var invalidDefineCharRegex = regexp.MustCompile("[^a-zA-Z0-9_]")
611
Jooyung Han77988572019-10-18 16:26:16 +0900612// makeDefineString transforms a name of an APEX module into a value to be used as value for C define
613// For example, com.android.foo => COM_ANDROID_FOO
614func makeDefineString(name string) string {
Yifan Hongf2ede7a2020-09-09 18:48:40 -0700615 return invalidDefineCharRegex.ReplaceAllString(strings.ToUpper(name), "_")
Jooyung Han77988572019-10-18 16:26:16 +0900616}
617
Colin Cross948f0cb2016-10-17 14:24:56 -0700618var gnuToCReplacer = strings.NewReplacer("gnu", "c")
619
Colin Cross4d9c2d12016-07-29 12:48:20 -0700620func ndkPathDeps(ctx ModuleContext) android.Paths {
Dan Albert92fe7402020-07-15 13:33:30 -0700621 if ctx.Module().(*Module).IsSdkVariant() {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700622 // The NDK sysroot timestamp file depends on all the NDK sysroot files
623 // (headers and libraries).
Dan Albert6ab43d82017-12-13 15:05:04 -0800624 return android.Paths{getNdkBaseTimestampFile(ctx)}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700625 }
626 return nil
627}
628
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700629func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
Inseob Kimd110f872019-12-06 13:15:38 +0900630 pathDeps := deps.GeneratedDeps
Colin Cross4d9c2d12016-07-29 12:48:20 -0700631 pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
Colin Cross2f336352016-10-26 10:03:47 -0700632
Colin Cross2f336352016-10-26 10:03:47 -0700633 buildFlags := flagsToBuilderFlags(flags)
634
Colin Crossf18e1102017-11-16 14:33:08 -0800635 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
636
David Sudd18efd2020-07-24 17:19:23 +0000637 srcs, genDeps := genSources(ctx, srcs, buildFlags)
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800638 pathDeps = append(pathDeps, genDeps...)
Colin Cross2f336352016-10-26 10:03:47 -0700639
Pirama Arumuga Nainar70ba5a32017-12-19 15:11:01 -0800640 compiler.pathDeps = pathDeps
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800641 compiler.cFlagsDeps = flags.CFlagsDeps
Colin Cross2f336352016-10-26 10:03:47 -0700642
Fabien Sanglardd61f1f42017-01-10 16:21:22 -0800643 // Save src, buildFlags and context
644 compiler.srcs = srcs
645
Colin Cross4d9c2d12016-07-29 12:48:20 -0700646 // Compile files listed in c.Properties.Srcs into objects
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800647 objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700648
649 if ctx.Failed() {
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700650 return Objects{}
Colin Cross4d9c2d12016-07-29 12:48:20 -0700651 }
652
Dan Willemsen5cb580f2016-09-26 17:33:01 -0700653 return objs
Colin Cross4d9c2d12016-07-29 12:48:20 -0700654}
655
656// Compile a list of source files into objects a specified subdirectory
Colin Cross2f336352016-10-26 10:03:47 -0700657func compileObjs(ctx android.ModuleContext, flags builderFlags,
Pirama Arumuga Nainarf231b192018-01-23 10:49:04 -0800658 subdir string, srcFiles, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
Colin Cross4d9c2d12016-07-29 12:48:20 -0700659
Chris Parsonsbf4f55f2020-11-23 17:02:44 -0500660 return transformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps)
Colin Cross4d9c2d12016-07-29 12:48:20 -0700661}
Yi Kong950e0ba2019-10-08 02:27:17 -0700662
663var thirdPartyDirPrefixExceptions = []*regexp.Regexp{
664 regexp.MustCompile("^vendor/[^/]*google[^/]*/"),
665 regexp.MustCompile("^hardware/google/"),
666 regexp.MustCompile("^hardware/interfaces/"),
667 regexp.MustCompile("^hardware/libhardware[^/]*/"),
668 regexp.MustCompile("^hardware/ril/"),
669}
670
671func isThirdParty(path string) bool {
672 thirdPartyDirPrefixes := []string{"external/", "vendor/", "hardware/"}
673
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800674 if android.HasAnyPrefix(path, thirdPartyDirPrefixes) {
675 for _, prefix := range thirdPartyDirPrefixExceptions {
676 if prefix.MatchString(path) {
677 return false
Yi Kong950e0ba2019-10-08 02:27:17 -0700678 }
Yi Kong950e0ba2019-10-08 02:27:17 -0700679 }
680 }
Yi Kong950e0ba2019-10-08 02:27:17 -0700681 return true
682}
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400683
684// Properties for rust_bindgen related to generating rust bindings.
685// This exists here so these properties can be included in a cc_default
686// which can be used in both cc and rust modules.
687type RustBindgenClangProperties struct {
688 // list of directories relative to the Blueprints file that will
689 // be added to the include path using -I
690 Local_include_dirs []string `android:"arch_variant,variant_prepend"`
691
692 // list of static libraries that provide headers for this binding.
693 Static_libs []string `android:"arch_variant,variant_prepend"`
694
695 // list of shared libraries that provide headers for this binding.
696 Shared_libs []string `android:"arch_variant"`
697
Ivan Lozano9b443832020-11-17 13:39:30 -0500698 // List of libraries which export include paths required for this module
699 Header_libs []string `android:"arch_variant,variant_prepend"`
700
Ivan Lozanobc9e4212020-09-25 16:08:34 -0400701 // list of clang flags required to correctly interpret the headers.
702 Cflags []string `android:"arch_variant"`
703
704 // list of c++ specific clang flags required to correctly interpret the headers.
705 // This is provided primarily to make sure cppflags defined in cc_defaults are pulled in.
706 Cppflags []string `android:"arch_variant"`
707
708 // C standard version to use. Can be a specific version (such as "gnu11"),
709 // "experimental" (which will use draft versions like C1x when available),
710 // or the empty string (which will use the default).
711 //
712 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
713 // to "default" will use the build system default version. This cannot be set at the same time as cpp_std.
714 C_std *string
715
716 // C++ standard version to use. Can be a specific version (such as
717 // "gnu++11"), "experimental" (which will use draft versions like C++1z when
718 // available), or the empty string (which will use the default).
719 //
720 // If this is set, the file extension will be ignored and this will be used as the std version value. Setting this
721 // to "default" will use the build system default version. This cannot be set at the same time as c_std.
722 Cpp_std *string
723
724 //TODO(b/161141999) Add support for headers from cc_library_header modules.
725}