Home
last modified time | relevance | path

Searched refs:android (Results 1 – 25 of 442) sorted by relevance

12345678910>>...18

/build/soong/etc/
Dprebuilt_etc.go25 var pctx = android.NewPackageContext("android/soong/etc")
32 android.RegisterModuleType("prebuilt_etc", PrebuiltEtcFactory)
33 android.RegisterModuleType("prebuilt_etc_host", PrebuiltEtcHostFactory)
34 android.RegisterModuleType("prebuilt_usr_share", PrebuiltUserShareFactory)
35 android.RegisterModuleType("prebuilt_usr_share_host", PrebuiltUserShareHostFactory)
36 android.RegisterModuleType("prebuilt_font", PrebuiltFontFactory)
37 android.RegisterModuleType("prebuilt_firmware", PrebuiltFirmwareFactory)
38 android.RegisterModuleType("prebuilt_dsp", PrebuiltDSPFactory)
43 Src *string `android:"path,arch_variant"`
46 Sub_dir *string `android:"arch_variant"`
[all …]
/build/soong/java/
Dplatform_compat_config.go23android.RegisterSingletonType("platform_compat_config_singleton", platformCompatConfigSingletonFac…
24 android.RegisterModuleType("platform_compat_config", PlatformCompatConfigFactory)
25 android.RegisterModuleType("global_compat_config", globalCompatConfigFactory)
28 func platformCompatConfigPath(ctx android.PathContext) android.OutputPath {
29 return android.PathForOutput(ctx, "compat_config", "merged_compat_config.xml")
33 metadata android.Path
37 Src *string `android:"path"`
41 android.ModuleBase
44 installDirPath android.InstallPath
45 configFile android.OutputPath
[all …]
Dsystem_modules.go31 RegisterSystemModulesBuildComponents(android.InitRegistrationContext)
36 android.RegisterSdkMemberType(&systemModulesSdkMemberType{
37 android.SdkMemberTypeBase{
45 func RegisterSystemModulesBuildComponents(ctx android.RegistrationContext) {
59 `${config.JmodCmd} create --module-version ${config.JlinkVersion} --target-platform android ` +
81 systemModulesLibsTag = android.DependencyTagForSdkMemberType(javaHeaderLibsSdkMemberType)
84 func TransformJarsToSystemModules(ctx android.ModuleContext, jars android.Paths) (android.Path, and…
85 outDir := android.PathForModuleOut(ctx, "system")
86 workDir := android.PathForModuleOut(ctx, "modules")
87 outputFile := android.PathForModuleOut(ctx, "system/lib/modules")
[all …]
Dhiddenapi_singleton.go24 android.RegisterSingletonType("hiddenapi", hiddenAPISingletonFactory)
25 android.RegisterSingletonType("hiddenapi_index", hiddenAPIIndexSingletonFactory)
26 android.RegisterModuleType("hiddenapi_flags", hiddenAPIFlagsFactory)
30 flags android.OutputPath
31 index android.OutputPath
32 metadata android.OutputPath
33 stubFlags android.OutputPath
36 var hiddenAPISingletonPathsKey = android.NewOnceKey("hiddenAPISingletonPathsKey")
41 func hiddenAPISingletonPaths(ctx android.PathContext) hiddenAPISingletonPathsStruct {
44 flags: android.PathForOutput(ctx, "hiddenapi", "hiddenapi-flags.csv"),
[all …]
Djava.go37 RegisterJavaBuildComponents(android.InitRegistrationContext)
40 android.RegisterSdkMemberType(javaHeaderLibsSdkMemberType)
42 android.RegisterSdkMemberType(&librarySdkMemberType{
43 android.SdkMemberTypeBase{
46 func(j *Library) android.Path {
56 android.RegisterSdkMemberType(&testSdkMemberType{
57 SdkMemberTypeBase: android.SdkMemberTypeBase{
63 func RegisterJavaBuildComponents(ctx android.RegistrationContext) {
81 ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) {
97 func (j *Module) checkSdkVersions(ctx android.ModuleContext) {
[all …]
Daar.go30 ExportPackage() android.Path
31 ExportedProguardFlagFiles() android.Paths
33 ExportedStaticPackages() android.Paths
34 ExportedManifests() android.Paths
35 ExportedAssets() android.OptionalPath
39 RegisterAARBuildComponents(android.InitRegistrationContext)
42 func RegisterAARBuildComponents(ctx android.RegistrationContext) {
74 Resource_zips []string `android:"path"`
77 Manifest *string `android:"path"`
80 Additional_manifests []string `android:"path"`
[all …]
Dlint.go54 manifest android.Path
55 mergedManifest android.Path
56 srcs android.Paths
57 srcJars android.Paths
58 resources android.Paths
59 classpath android.Paths
60 classes android.Path
61 extraLintCheckJars android.Paths
72 reports android.Paths
78 html android.Path
[all …]
Ddroiddoc.go31 RegisterDocsBuildComponents(android.InitRegistrationContext)
32 RegisterStubsBuildComponents(android.InitRegistrationContext)
35 android.RegisterSdkMemberType(&droidStubsSdkMemberType{
36 SdkMemberTypeBase: android.SdkMemberTypeBase{
45 func RegisterDocsBuildComponents(ctx android.RegistrationContext) {
55 func RegisterStubsBuildComponents(ctx android.RegistrationContext) {
71 Srcs []string `android:"path,arch_variant"`
80 Exclude_srcs []string `android:"path,arch_variant"`
87 Libs []string `android:"arch_variant"`
94 Sdk_version *string `android:"arch_variant"`
[all …]
Ddevice_host_converter.go25 android.ModuleBase
26 android.DefaultableModuleBase
30 headerJars android.Paths
31 implementationJars android.Paths
32 implementationAndResourceJars android.Paths
33 resourceJars android.Paths
36 srcJarDeps android.Paths
38 combinedHeaderJar android.Path
39 combinedImplementationJar android.Path
55 func DeviceForHostFactory() android.Module {
[all …]
Dandroidmk.go24 func (library *Library) AndroidMkEntriesHostDex() android.AndroidMkEntries {
32 var output android.Path
38 return android.AndroidMkEntries{
41 OutputFile: android.OptionalPathForPath(output),
44 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
45 func(entries *android.AndroidMkEntries) {
58 return android.AndroidMkEntries{Disabled: true}
61 func (library *Library) AndroidMkEntries() []android.AndroidMkEntries {
62 var entriesList []android.AndroidMkEntries
64 mainEntries := android.AndroidMkEntries{Disabled: true}
[all …]
Djdeps.go29 android.RegisterSingletonType("jdeps_generator", jDepsGeneratorSingleton)
32 func jDepsGeneratorSingleton() android.Singleton {
37 outputPath android.Path
40 var _ android.SingletonMakeVarsProvider = (*jdepsGeneratorSingleton)(nil)
48 func (j *jdepsGeneratorSingleton) GenerateBuildActions(ctx android.SingletonContext) {
53 moduleInfos := make(map[string]android.IdeInfo)
55 ctx.VisitAllModules(func(module android.Module) {
60 ideInfoProvider, ok := module.(android.IDEInfo)
65 ideModuleNameProvider, ok := module.(android.IDECustomizedModuleName)
72 dpInfo.Deps = android.FirstUniqueStrings(dpInfo.Deps)
[all …]
Dapp.go38 RegisterAppBuildComponents(android.InitRegistrationContext)
43 func RegisterAppBuildComponents(ctx android.RegistrationContext) {
75 android.ModuleBase
76 android.DefaultableModuleBase
77 prebuilt android.Prebuilt
80 packedOutput android.WritablePath
82 apkcertsFile android.ModuleOutPath
93 func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
101 func (as *AndroidAppSet) OutputFile() android.Path {
109 func (as *AndroidAppSet) APKCertsFile() android.Path {
[all …]
/build/make/target/product/gsi/
D29.txt19 VNDK-SP: android.hardware.graphics.common@1.0.so
20 VNDK-SP: android.hardware.graphics.common@1.1.so
21 VNDK-SP: android.hardware.graphics.common@1.2.so
22 VNDK-SP: android.hardware.graphics.mapper@2.0.so
23 VNDK-SP: android.hardware.graphics.mapper@2.1.so
24 VNDK-SP: android.hardware.graphics.mapper@3.0.so
25 VNDK-SP: android.hardware.renderscript@1.0.so
26 VNDK-SP: android.hidl.memory.token@1.0.so
27 VNDK-SP: android.hidl.memory@1.0.so
28 VNDK-SP: android.hidl.memory@1.0-impl.so
[all …]
D28.txt18 VNDK-SP: android.hardware.graphics.common@1.0.so
19 VNDK-SP: android.hardware.graphics.common@1.1.so
20 VNDK-SP: android.hardware.graphics.mapper@2.0.so
21 VNDK-SP: android.hardware.graphics.mapper@2.1.so
22 VNDK-SP: android.hardware.renderscript@1.0.so
23 VNDK-SP: android.hidl.memory.token@1.0.so
24 VNDK-SP: android.hidl.memory@1.0.so
25 VNDK-SP: android.hidl.memory@1.0-impl.so
49 VNDK-core: android.frameworks.displayservice@1.0.so
50 VNDK-core: android.frameworks.schedulerservice@1.0.so
[all …]
/build/soong/sh/
Dsh_binary.go34 var pctx = android.NewPackageContext("android/soong/sh")
39 android.RegisterModuleType("sh_binary", ShBinaryFactory)
40 android.RegisterModuleType("sh_binary_host", ShBinaryHostFactory)
41 android.RegisterModuleType("sh_test", ShTestFactory)
42 android.RegisterModuleType("sh_test_host", ShTestHostFactory)
47 Src *string `android:"path,arch_variant"`
50 Sub_dir *string `android:"arch_variant"`
53 Filename *string `android:"arch_variant"`
57 Filename_from_src *bool `android:"arch_variant"`
63 Symlinks []string `android:"arch_variant"`
[all …]
/build/soong/genrule/
Dgenrule.go34 registerGenruleBuildComponents(android.InitRegistrationContext)
37 func registerGenruleBuildComponents(ctx android.RegistrationContext) {
43 ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) {
49 pctx = android.NewPackageContext("android/soong/genrule")
68 GeneratedSourceFiles() android.Paths
69 GeneratedHeaderDirs() android.Paths
70 GeneratedDeps() android.Paths
76 android.HostToolProvider
106 Tool_files []string `android:"path"`
112 Srcs []string `android:"path,arch_variant"`
[all …]
/build/soong/cc/
Dgen.go68 func genYacc(ctx android.ModuleContext, rule *android.RuleBuilder, yaccFile android.Path,
69 outFile android.ModuleGenPath, props *YaccProperties) (headerFiles android.Paths) {
71 outDir := android.PathForModuleGen(ctx, "yacc")
72 headerFile := android.GenPathWithExt(ctx, "yacc", yaccFile, "h")
73 ret := android.Paths{headerFile}
111 func genAidl(ctx android.ModuleContext, rule *android.RuleBuilder, aidlFile android.Path,
112 outFile, depFile android.ModuleGenPath, aidlFlags string) android.Paths {
125 outDir := android.PathForModuleGen(ctx, "aidl")
143 ImplicitOutputs(android.WritablePaths{
149 return android.Paths{
[all …]
Dndk_sysroot.go60 android.RegisterModuleType("ndk_headers", ndkHeadersFactory)
61 android.RegisterModuleType("ndk_library", NdkLibraryFactory)
62 android.RegisterModuleType("versioned_ndk_headers", versionedNdkHeadersFactory)
63 android.RegisterModuleType("preprocessed_ndk_headers", preprocessedNdkHeadersFactory)
64 android.RegisterSingletonType("ndk", NdkSingleton)
69 func getNdkInstallBase(ctx android.PathContext) android.InstallPath {
70 return android.PathForNdkInstall(ctx)
74 func getNdkSysrootBase(ctx android.PathContext) android.InstallPath {
81 func getNdkBaseTimestampFile(ctx android.PathContext) android.WritablePath {
82 return android.PathForOutput(ctx, "ndk_base.timestamp")
[all …]
Dsnapshot_utils.go27 collectHeadersForSnapshot(ctx android.ModuleContext)
28 snapshotHeaders() android.Paths
44 func snapshotMapKey(name string, arch android.ArchType) string {
50 func (s *snapshotMap) add(name string, arch android.ArchType, snapshot string) {
56 func (s *snapshotMap) get(name string, arch android.ArchType) (snapshot string, found bool) {
61 func isSnapshotAware(ctx android.ModuleContext, m *Module) bool {
70 func copyFile(ctx android.SingletonContext, path android.Path, out string) android.OutputPath {
71 outPath := android.PathForOutput(ctx, out)
72 ctx.Build(pctx, android.BuildParams{
73 Rule: android.Cp,
[all …]
Dndk_headers.go49 func getCurrentIncludePath(ctx android.ModuleContext) android.InstallPath {
71 Srcs []string `android:"path"`
74 Exclude_srcs []string `android:"path"`
77 License *string `android:"path"`
86 android.ModuleBase
90 installPaths android.Paths
91 licensePath android.Path
94 func getHeaderInstallDir(ctx android.ModuleContext, header android.Path, from string,
95 to string) android.InstallPath {
107 fullFromPath := android.PathForModuleSrc(ctx, from)
[all …]
Dlibrary_sdk_member.go29 SdkMemberTypeBase: android.SdkMemberTypeBase{
38 SdkMemberTypeBase: android.SdkMemberTypeBase{
47 SdkMemberTypeBase: android.SdkMemberTypeBase{
57 android.RegisterSdkMemberType(sharedLibrarySdkMemberType)
58 android.RegisterSdkMemberType(staticLibrarySdkMemberType)
59 android.RegisterSdkMemberType(staticAndSharedLibrarySdkMemberType)
63 android.SdkMemberTypeBase
74 func (mt *librarySdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag …
84 {Mutator: "image", Variation: android.CoreVariation},
90 {Mutator: "image", Variation: android.CoreVariation},
[all …]
/build/soong/sdk/
Dsdk.go36 android.RegisterModuleType("sdk", SdkModuleFactory)
37 android.RegisterModuleType("sdk_snapshot", SnapshotModuleFactory)
38 android.PreDepsMutators(RegisterPreDepsMutators)
39 android.PostDepsMutators(RegisterPostDepsMutators)
43 android.ModuleBase
44 android.DefaultableModuleBase
67 snapshotFile android.OptionalPath
87 memberType android.SdkMemberType
91 dependencyTag android.SdkMemberTypeDependencyTag
100 var dynamicSdkMemberTypesMap android.OncePer
[all …]
/build/soong/dexpreopt/
Dconfig.go79 CpuVariant map[android.ArchType]string // cpu variant for each architecture
80 InstructionSetFeatures map[android.ArchType]string // instruction set for each architecture
83 DirtyImageObjects android.OptionalPath // path to a dirty-image-objects file
84 BootImageProfiles android.Paths // path to a boot-image-profile.txt file
94 Profman android.Path
95 Dex2oat android.Path
96 Aapt android.Path
97 SoongZip android.Path
98 Zip2zip android.Path
99 ManifestCheck android.Path
[all …]
Ddexpreopt_test.go23 func testSystemModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
27 func testSystemProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
31 func testProductModuleConfig(ctx android.PathContext, name string) *ModuleConfig {
35 func testModuleConfig(ctx android.PathContext, name, partition string) *ModuleConfig {
39 BuildPath: android.PathForOutput(ctx, fmt.Sprintf("%s/%s.apk", name, name)),
40 …DexPath: android.PathForOutput(ctx, fmt.Sprintf("%s/dex/%s.jar", name, nam…
44 ProfileClassListing: android.OptionalPath{},
50 Archs: []android.ArchType{android.Arm},
51 …DexPreoptImages: android.Paths{android.PathForTesting("system/framework/arm/boot.a…
52 DexPreoptImagesDeps: []android.OutputPaths{android.OutputPaths{}},
[all …]
/build/make/tools/releasetools/testdata/
Dapexkeys_merge.txt1android.conscrypt.apex" public_key="external/conscrypt/apex/com.android.conscrypt.avbpubkey" priva…
2 name="com.android.fake_product.apex" public_key="selected" private_key="selected" container_certifi…
3android.runtime.apex" public_key="bionic/apex/com.android.runtime.avbpubkey" private_key="bionic/a…
4android.vndk.current.on_vendor.apex" public_key="packages/modules/vndk/apex/com.android.vndk.curre…
5android.vndk.v27.apex" public_key="packages/modules/vndk/apex/com.android.vndk.v27.pubkey" private…
6android.vndk.v28.apex" public_key="packages/modules/vndk/apex/com.android.vndk.v28.pubkey" private…
7android.vndk.v29.apex" public_key="packages/modules/vndk/apex/com.android.vndk.v29.pubkey" private…

12345678910>>...18