Lines Matching refs:module
53 module *Module member
75 h.module.outputFile = android.OptionalPathForPath(outputPath)
95 module, library := NewLibrary(android.HostAndDeviceSupported)
97 module.sdkMemberTypes = []android.SdkMemberType{headersLibrarySdkMemberType}
98 module.bazelable = true
99 module.bazelHandler = &libraryHeaderBazelHander{module: module, library: library}
100 return module.Init()
105 module, library := NewPrebuiltLibrary(android.HostAndDeviceSupported, "")
107 module.bazelable = true
108 module.bazelHandler = &ccLibraryBazelHandler{module: module}
109 return module.Init()
123 func libraryHeadersBp2Build(ctx android.TopDownMutatorContext, module *Module) {
124 baseAttributes := bp2BuildParseBaseProps(ctx, module)
125 exportedIncludes := bp2BuildParseExportedIncludes(ctx, module, baseAttributes.includes)
136 sdkAttributes: bp2BuildParseSdkAttributes(module),
144 ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: module.Name()}, attrs)