Lines Matching refs:lib
73 if lib, ok := module.compiler.(*libraryDecorator); ok {
74 allDeps = append(allDeps, lib.SharedProperties.Shared.Static_libs...)
75 allDeps = append(allDeps, lib.SharedProperties.Shared.Whole_static_libs...)
76 allDeps = append(allDeps, lib.SharedProperties.Shared.Shared_libs...)
77 allDeps = append(allDeps, lib.SharedProperties.Shared.System_shared_libs...)
79 allDeps = append(allDeps, lib.StaticProperties.Static.Static_libs...)
80 allDeps = append(allDeps, lib.StaticProperties.Static.Whole_static_libs...)
81 allDeps = append(allDeps, lib.StaticProperties.Static.Shared_libs...)
82 allDeps = append(allDeps, lib.StaticProperties.Static.System_shared_libs...)
98 lib, ok := module.compiler.(*libraryDecorator)
103 copts := bazel.StringListAttribute{Value: lib.SharedProperties.Shared.Cflags}
106 Value: android.BazelLabelForModuleSrc(ctx, lib.SharedProperties.Shared.Srcs)}
109 Value: android.BazelLabelForModuleDeps(ctx, lib.SharedProperties.Shared.Static_libs)}
112 Value: android.BazelLabelForModuleDeps(ctx, lib.SharedProperties.Shared.Shared_libs)}
115 Value: android.BazelLabelForModuleDeps(ctx, lib.SharedProperties.Shared.Whole_static_libs)}
136 lib, ok := module.compiler.(*libraryDecorator)
141 copts := bazel.StringListAttribute{Value: lib.StaticProperties.Static.Cflags}
144 Value: android.BazelLabelForModuleSrc(ctx, lib.StaticProperties.Static.Srcs)}
147 Value: android.BazelLabelForModuleDeps(ctx, lib.StaticProperties.Static.Static_libs)}
150 Value: android.BazelLabelForModuleDeps(ctx, lib.StaticProperties.Static.Shared_libs)}
153 Value: android.BazelLabelForModuleDeps(ctx, lib.StaticProperties.Static.Whole_static_libs)}