Lines Matching refs:Properties

243 	Properties BaseCompilerProperties  member
271 compiler.Properties.Cflags.AppendSimpleValue(flags)
275 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
279 return []interface{}{&compiler.Properties, &compiler.Proto}
283 return compiler.Properties
291 return includeBuildDirectory(compiler.Properties.Include_build_directory)
297 deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
298 …deps.GeneratedSources = removeListFromList(deps.GeneratedSources, compiler.Properties.Exclude_gene…
299 …deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers.GetOrD…
300 deps.AidlLibs = append(deps.AidlLibs, compiler.Properties.Aidl.Libs...)
304 deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
307 if Bool(compiler.Properties.Openmp) {
366 …foreGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exc…
369 cflags := compiler.Properties.Cflags.GetOrDefault(ctx, nil)
371 CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
372 CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
373 CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
374 CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
375 CheckBadCompilerFlags(ctx, "product.cflags", compiler.Properties.Target.Product.Cflags)
376 CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
377 CheckBadCompilerFlags(ctx, "ramdisk.cflags", compiler.Properties.Target.Ramdisk.Cflags)
378 …CheckBadCompilerFlags(ctx, "vendor_ramdisk.cflags", compiler.Properties.Target.Vendor_ramdisk.Cfla…
379 CheckBadCompilerFlags(ctx, "platform.cflags", compiler.Properties.Target.Platform.Cflags)
384 flags.Local.CppFlags = append(flags.Local.CppFlags, esc(compiler.Properties.Cppflags)...)
385 flags.Local.ConlyFlags = append(flags.Local.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
386 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Asflags)...)
387 flags.Local.YasmFlags = append(flags.Local.YasmFlags, esc(compiler.Properties.Asflags)...)
389 flags.Yacc = compiler.Properties.Yacc
390 flags.Lex = compiler.Properties.Lex
392 flags.ClangVerify = compiler.Properties.Clang_verify
393 if compiler.Properties.Clang_verify {
398 localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
404 rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
467 instructionSet := String(compiler.Properties.Instruction_set)
476 if !ctx.DeviceConfig().BuildBrokenClangCFlags() && len(compiler.Properties.Clang_cflags) != 0 {
479 CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
481 if !ctx.DeviceConfig().BuildBrokenClangAsFlags() && len(compiler.Properties.Clang_asflags) != 0 {
484 CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
489 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Clang_cflags)...)
492 flags.Local.AsFlags = append(flags.Local.AsFlags, esc(compiler.Properties.Clang_asflags)...)
510 if proptools.Bool(compiler.Properties.Bpf_target) {
531 if !proptools.Bool(compiler.Properties.Bpf_target) {
543 if Bool(compiler.Properties.Rtti) {
557 if !proptools.Bool(compiler.Properties.Bpf_target) {
561 cStd := parseCStd(compiler.Properties.C_std)
562 cppStd := parseCppStd(compiler.Properties.Cpp_std)
564 cStd, cppStd = maybeReplaceGnuToC(compiler.Properties.Gnu_extensions, cStd, cppStd)
570 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
574 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Product.Cflags)...)
578 …flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
582 …flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Vendor_ramdisk.Cfla…
585 flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Ramdisk.Cflags)...)
588 …flags.Local.CFlags = append(flags.Local.CFlags, esc(compiler.Properties.Target.Platform.Cflags)...)
616 if len(compiler.Properties.Aidl.Libs) > 0 &&
617 …(len(compiler.Properties.Aidl.Include_dirs) > 0 || len(compiler.Properties.Aidl.Local_include_dirs…
622 flags.aidlFlags = append(flags.aidlFlags, compiler.Properties.Aidl.Flags...)
623 if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
624 …localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
627 if len(compiler.Properties.Aidl.Include_dirs) > 0 {
628 rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
640 if proptools.BoolDefault(compiler.Properties.Aidl.Generate_traces, true) {
661 flags = rsFlags(ctx, flags, &compiler.Properties)
669 if len(compiler.Properties.Srcs) > 0 {
682 if Bool(compiler.Properties.Openmp) {
716 for _, src := range compiler.Properties.Srcs {
721 for _, src := range compiler.Properties.OriginalSrcs {
773 …append(android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_disabled_srcs), compiler.generatedS…
774 android.PathsForModuleSrc(ctx, compiler.Properties.Tidy_timeout_srcs),