Home | History | Annotate | Download | only in build

Lines Matching defs:codegen

17 // This file implements the "codegen" property to apply different properties based on the currently
18 // selected codegen arches, which defaults to all arches on the host and the primary and secondary
27 func codegen(ctx android.LoadHookContext, c *codegenProperties, library bool) {
62 arch = &c.Codegen.Arm
64 arch = &c.Codegen.Arm64
66 arch = &c.Codegen.Mips
68 arch = &c.Codegen.Mips64
70 arch = &c.Codegen.X86
72 arch = &c.Codegen.X86_64
74 ctx.ModuleErrorf("Unknown codegen architecture %q", archName)
129 Codegen struct {
162 android.AddLoadHook(module, func(ctx android.LoadHookContext) { codegen(ctx, c, library) })