Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 1 | package cc |
| 2 | |
| 3 | import ( |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 4 | "android/soong/android" |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 5 | |
| 6 | "github.com/google/blueprint" |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 7 | ) |
| 8 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 9 | // LinkableInterface is an interface for a type of module that is linkable in a C++ library. |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 10 | type LinkableInterface interface { |
| 11 | Module() android.Module |
| 12 | CcLibrary() bool |
| 13 | CcLibraryInterface() bool |
| 14 | |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 15 | OutputFile() android.OptionalPath |
Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 16 | CoverageFiles() android.Paths |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 17 | |
Ivan Lozano | 2b26297 | 2019-11-21 12:30:50 -0800 | [diff] [blame] | 18 | NonCcVariants() bool |
| 19 | |
Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 20 | SelectedStl() string |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 21 | |
| 22 | BuildStaticVariant() bool |
| 23 | BuildSharedVariant() bool |
| 24 | SetStatic() |
| 25 | SetShared() |
Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 26 | Static() bool |
| 27 | Shared() bool |
| 28 | Toc() android.OptionalPath |
| 29 | |
Jooyung Han | 624d35c | 2020-04-10 12:57:24 +0900 | [diff] [blame] | 30 | Host() bool |
| 31 | |
Yifan Hong | 1b3348d | 2020-01-21 15:53:22 -0800 | [diff] [blame] | 32 | InRamdisk() bool |
| 33 | OnlyInRamdisk() bool |
| 34 | |
Yifan Hong | 60e0cfb | 2020-10-21 15:17:56 -0700 | [diff] [blame] | 35 | InVendorRamdisk() bool |
| 36 | OnlyInVendorRamdisk() bool |
| 37 | |
Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 38 | InRecovery() bool |
| 39 | OnlyInRecovery() bool |
| 40 | |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 41 | UseSdk() bool |
Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 42 | UseVndk() bool |
| 43 | MustUseVendorVariant() bool |
| 44 | IsVndk() bool |
| 45 | HasVendorVariant() bool |
| 46 | |
| 47 | SdkVersion() string |
Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 48 | AlwaysSdk() bool |
Jiyong Park | 2286afd | 2020-06-16 21:58:53 +0900 | [diff] [blame] | 49 | IsSdkVariant() bool |
Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 50 | |
Colin Cross | 1348ce3 | 2020-10-01 13:37:16 -0700 | [diff] [blame] | 51 | SplitPerApiLevel() bool |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 54 | var ( |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 55 | // Dependency tag for crtbegin, an object file responsible for initialization. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 56 | CrtBeginDepTag = dependencyTag{name: "crtbegin"} |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 57 | // Dependency tag for crtend, an object file responsible for program termination. |
| 58 | CrtEndDepTag = dependencyTag{name: "crtend"} |
| 59 | // Dependency tag for coverage library. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 60 | CoverageDepTag = dependencyTag{name: "coverage"} |
| 61 | ) |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 62 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 63 | // SharedDepTag returns the dependency tag for any C++ shared libraries. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 64 | func SharedDepTag() blueprint.DependencyTag { |
| 65 | return libraryDependencyTag{Kind: sharedLibraryDependency} |
Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 68 | // StaticDepTag returns the dependency tag for any C++ static libraries. |
Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 69 | func StaticDepTag() blueprint.DependencyTag { |
| 70 | return libraryDependencyTag{Kind: staticLibraryDependency} |
| 71 | } |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 72 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 73 | // HeaderDepTag returns the dependency tag for any C++ "header-only" libraries. |
Zach Johnson | 3df4e63 | 2020-11-06 11:56:27 -0800 | [diff] [blame] | 74 | func HeaderDepTag() blueprint.DependencyTag { |
| 75 | return libraryDependencyTag{Kind: headerLibraryDependency} |
| 76 | } |
| 77 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 78 | // SharedLibraryInfo is a provider to propagate information about a shared C++ library. |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 79 | type SharedLibraryInfo struct { |
| 80 | SharedLibrary android.Path |
| 81 | UnstrippedSharedLibrary android.Path |
| 82 | |
| 83 | TableOfContents android.OptionalPath |
| 84 | CoverageSharedLibrary android.OptionalPath |
| 85 | |
| 86 | StaticAnalogue *StaticLibraryInfo |
| 87 | } |
| 88 | |
| 89 | var SharedLibraryInfoProvider = blueprint.NewProvider(SharedLibraryInfo{}) |
| 90 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 91 | // SharedStubLibrary is a struct containing information about a stub shared library. |
| 92 | // Stub libraries are used for cross-APEX dependencies; when a library is to depend on a shared |
| 93 | // library in another APEX, it must depend on the stub version of that library. |
| 94 | type SharedStubLibrary struct { |
| 95 | // The version of the stub (corresponding to the stable version of the shared library being |
| 96 | // stubbed). |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 97 | Version string |
| 98 | SharedLibraryInfo SharedLibraryInfo |
| 99 | FlagExporterInfo FlagExporterInfo |
| 100 | } |
| 101 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 102 | // SharedLibraryStubsInfo is a provider to propagate information about all shared library stubs |
| 103 | // which are dependencies of a library. |
| 104 | // Stub libraries are used for cross-APEX dependencies; when a library is to depend on a shared |
| 105 | // library in another APEX, it must depend on the stub version of that library. |
| 106 | type SharedLibraryStubsInfo struct { |
| 107 | SharedStubLibraries []SharedStubLibrary |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 108 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 109 | IsLLNDK bool |
| 110 | } |
| 111 | |
| 112 | var SharedLibraryStubsProvider = blueprint.NewProvider(SharedLibraryStubsInfo{}) |
| 113 | |
| 114 | // StaticLibraryInfo is a provider to propagate information about a static C++ library. |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 115 | type StaticLibraryInfo struct { |
| 116 | StaticLibrary android.Path |
| 117 | Objects Objects |
| 118 | ReuseObjects Objects |
| 119 | |
| 120 | // This isn't the actual transitive DepSet, shared library dependencies have been |
| 121 | // converted into static library analogues. It is only used to order the static |
| 122 | // library dependencies that were specified for the current module. |
| 123 | TransitiveStaticLibrariesForOrdering *android.DepSet |
| 124 | } |
| 125 | |
| 126 | var StaticLibraryInfoProvider = blueprint.NewProvider(StaticLibraryInfo{}) |
| 127 | |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 128 | // FlagExporterInfo is a provider to propagate transitive library information |
| 129 | // pertaining to exported include paths and flags. |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 130 | type FlagExporterInfo struct { |
Chris Parsons | 3c27ca3 | 2020-11-20 12:42:07 -0500 | [diff] [blame^] | 131 | IncludeDirs android.Paths // Include directories to be included with -I |
| 132 | SystemIncludeDirs android.Paths // System include directories to be included with -isystem |
| 133 | Flags []string // Exported raw flags. |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 134 | Deps android.Paths |
| 135 | GeneratedHeaders android.Paths |
| 136 | } |
| 137 | |
| 138 | var FlagExporterInfoProvider = blueprint.NewProvider(FlagExporterInfo{}) |