Lines Matching refs:android
51 func getCurrentIncludePath(ctx android.ModuleContext) android.OutputPath {
73 Srcs []string `android:"path"`
76 Exclude_srcs []string `android:"path"`
79 License *string `android:"path"`
88 android.ModuleBase
92 installPaths android.Paths
93 licensePath android.Path
96 func getHeaderInstallDir(ctx android.ModuleContext, header android.Path, from string,
97 to string) android.OutputPath {
109 fullFromPath := android.PathForModuleSrc(ctx, from)
128 func (m *headerModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
133 m.licensePath = android.PathForModuleSrc(ctx, String(m.properties.License))
143 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
162 func ndkHeadersFactory() android.Module {
165 android.InitAndroidModule(module)
202 android.ModuleBase
206 installPaths android.Paths
207 licensePath android.Path
210 func (m *versionedHeaderModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
215 m.licensePath = android.PathForModuleSrc(ctx, String(m.properties.License))
217 fromSrcPath := android.PathForModuleSrc(ctx, String(m.properties.From))
220 var installPaths []android.WritablePath
235 func processHeadersWithVersioner(ctx android.ModuleContext, srcDir, outDir android.Path,
236 srcFiles android.Paths, installPaths []android.WritablePath) android.Path {
245 depsPath := android.PathForSource(ctx, "bionic/libc/versioner-dependencies")
259 depsGlob[i] = android.PathForSource(
264 timestampFile := android.PathForModuleOut(ctx, "versioner.timestamp")
265 ctx.Build(pctx, android.BuildParams{
281 func versionedNdkHeadersFactory() android.Module {
286 android.InitAndroidModule(module)
325 android.ModuleBase
329 installPaths android.Paths
330 licensePath android.Path
333 func (m *preprocessedHeadersModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
338 preprocessor := android.PathForModuleSrc(ctx, String(m.properties.Preprocessor))
339 m.licensePath = android.PathForModuleSrc(ctx, String(m.properties.License))
341 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
347 ctx.Build(pctx, android.BuildParams{
363 func preprocessedNdkHeadersFactory() android.Module {
368 android.InitAndroidModule(module)