Searched refs:CcInfo (Results 1 – 8 of 8) sorted by relevance
/build/soong/bazel/cquery/ |
D | request_type_test.go | 44 expectedOutput CcInfo 50 expectedOutput: CcInfo{ 61 expectedOutput: CcInfo{ 72 expectedOutput: CcInfo{ 83 expectedOutput: CcInfo{}, 89 expectedOutput: CcInfo{},
|
D | request_type.go | 13 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/ |
D | cc_library_static.bzl | 36 # 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]),
|
D | cc_object.bzl | 47 compilation_contexts.append(obj[CcInfo].compilation_context) 86 CcInfo(compilation_context = compilation_context), 98 "deps": attr.label_list(providers=[CcInfo, CcObjectInfo]),
|
D | full_cc_library.bzl | 86 ctx.attr.static[CcInfo], 97 "static": attr.label(mandatory = True, providers = [CcInfo]),
|
/build/soong/android/ |
D | bazel_handler.go | 70 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/ |
D | experimental_cc_shared_library.bzl | 223 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/ |
D | linkable.go | 377 func flagExporterInfoFromCcInfo(ctx android.ModuleContext, ccInfo cquery.CcInfo) FlagExporterInfo { argument
|