Home
last modified time | relevance | path

Searched refs:CcInfo (Results 1 – 8 of 8) sorted by relevance

/build/soong/bazel/cquery/
Drequest_type_test.go44 expectedOutput CcInfo
50 expectedOutput: CcInfo{
61 expectedOutput: CcInfo{
72 expectedOutput: CcInfo{
83 expectedOutput: CcInfo{},
89 expectedOutput: CcInfo{},
Drequest_type.go13 type CcInfo struct { struct
96 func (g getCcInfoType) ParseResult(rawString string) (CcInfo, error) {
102 return CcInfo{}, fmt.Errorf("Expected %d items, got %q", expectedLen, splitString)
112 return CcInfo{
/build/bazel/rules/
Dcc_library_static.bzl36 # Returns a cloned copy of the given CcInfo object, except that all linker inputs
55 … return CcInfo(compilation_context = ccinfo.compilation_context, linking_context = linking_context)
64 new_cc_info = _claim_ownership(ctx, main_target.label, main_target[CcInfo])
122 main_target[CcInfo],
123 CcInfo(compilation_context = compilation_context, linking_context = linking_context),
141 "deps": attr.label_list(providers = [CcInfo]),
Dcc_object.bzl47 compilation_contexts.append(obj[CcInfo].compilation_context)
86 CcInfo(compilation_context = compilation_context),
98 "deps": attr.label_list(providers=[CcInfo, CcObjectInfo]),
Dfull_cc_library.bzl86 ctx.attr.static[CcInfo],
97 "static": attr.label(mandatory = True, providers = [CcInfo]),
/build/soong/android/
Dbazel_handler.go70 GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error)
127 LabelToCcInfo map[string]cquery.CcInfo
135 func (m MockBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) {
166 func (bazelCtx *bazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, erro…
169 return cquery.CcInfo{}, ok, nil
181 func (n noopBazelContext) GetCcInfo(label string, archType ArchType) (cquery.CcInfo, bool, error) {
/build/bazel/rules_cc/examples/
Dexperimental_cc_shared_library.bzl223 dependency_linker_inputs.extend(export[CcInfo].linking_context.linker_inputs.to_list())
345 preloaded_deps_cc_infos.append(preloaded_dep[CcInfo])
474 "preloaded_deps": attr.label_list(providers = [CcInfo]),
475 "roots": attr.label_list(providers = [CcInfo], aspects = [graph_structure_aspect]),
/build/soong/cc/
Dlinkable.go377 func flagExporterInfoFromCcInfo(ctx android.ModuleContext, ccInfo cquery.CcInfo) FlagExporterInfo { argument