Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
b36fa772
Commit
b36fa772
authored
1 year ago
by
Jihoon Kang
Committed by
Gerrit Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "Create java_defaults in api.go"
parents
232e6429
1e4ac1d6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/api.go
+45
-10
45 additions, 10 deletions
api/api.go
with
45 additions
and
10 deletions
api/api.go
+
45
−
10
View file @
b36fa772
...
...
@@ -15,7 +15,9 @@
package
api
import
(
"fmt"
"sort"
"strings"
"github.com/google/blueprint/proptools"
...
...
@@ -102,6 +104,13 @@ type fgProps struct {
Visibility
[]
string
}
type
defaultsProps
struct
{
Name
*
string
Api_surface
*
string
Api_contributions
[]
string
Defaults_visibility
[]
string
}
type
Bazel_module
struct
{
Bp2build_available
*
bool
}
...
...
@@ -164,26 +173,26 @@ func createMergedTxt(ctx android.LoadHookContext, txt MergedTxtDefinition) {
}
func
createMergedAnnotationsFilegroups
(
ctx
android
.
LoadHookContext
,
modules
,
system_server_modules
[]
string
)
{
for
_
,
i
:=
range
[]
struct
{
for
_
,
i
:=
range
[]
struct
{
name
string
tag
string
modules
[]
string
}{
{
name
:
"all-modules-public-annotations"
,
tag
:
"{.public.annotations.zip}"
,
name
:
"all-modules-public-annotations"
,
tag
:
"{.public.annotations.zip}"
,
modules
:
modules
,
},
{
name
:
"all-modules-system-annotations"
,
tag
:
"{.system.annotations.zip}"
,
name
:
"all-modules-system-annotations"
,
tag
:
"{.system.annotations.zip}"
,
modules
:
modules
,
},
{
name
:
"all-modules-module-lib-annotations"
,
tag
:
"{.module-lib.annotations.zip}"
,
name
:
"all-modules-module-lib-annotations"
,
tag
:
"{.module-lib.annotations.zip}"
,
modules
:
modules
,
},
{
name
:
"all-modules-system-server-annotations"
,
tag
:
"{.system-server.annotations.zip}"
,
name
:
"all-modules-system-server-annotations"
,
tag
:
"{.system-server.annotations.zip}"
,
modules
:
system_server_modules
,
},
}
{
...
...
@@ -329,6 +338,30 @@ func createMergedTxts(ctx android.LoadHookContext, bootclasspath, system_server_
}
}
func
createApiContributionDefaults
(
ctx
android
.
LoadHookContext
,
modules
[]
string
)
{
defaultsSdkKinds
:=
[]
android
.
SdkKind
{
android
.
SdkPublic
,
android
.
SdkSystem
,
android
.
SdkModule
,
}
for
_
,
sdkKind
:=
range
defaultsSdkKinds
{
props
:=
defaultsProps
{}
props
.
Name
=
proptools
.
StringPtr
(
sdkKind
.
DefaultJavaLibraryName
()
+
"_contributions"
)
if
sdkKind
==
android
.
SdkModule
{
props
.
Name
=
proptools
.
StringPtr
(
sdkKind
.
DefaultJavaLibraryName
()
+
"_contributions_full"
)
}
props
.
Api_surface
=
proptools
.
StringPtr
(
sdkKind
.
String
())
apiSuffix
:=
""
if
sdkKind
!=
android
.
SdkPublic
{
apiSuffix
=
"."
+
strings
.
ReplaceAll
(
sdkKind
.
String
(),
"-"
,
"_"
)
}
props
.
Api_contributions
=
transformArray
(
modules
,
""
,
fmt
.
Sprintf
(
".stubs.source%s.api.contribution"
,
apiSuffix
))
props
.
Defaults_visibility
=
[]
string
{
"//visibility:public"
}
ctx
.
CreateModule
(
java
.
DefaultsFactory
,
&
props
)
}
}
func
(
a
*
CombinedApis
)
createInternalModules
(
ctx
android
.
LoadHookContext
)
{
bootclasspath
:=
a
.
properties
.
Bootclasspath
system_server_classpath
:=
a
.
properties
.
System_server_classpath
...
...
@@ -347,6 +380,8 @@ func (a *CombinedApis) createInternalModules(ctx android.LoadHookContext) {
createMergedAnnotationsFilegroups
(
ctx
,
bootclasspath
,
system_server_classpath
)
createPublicStubsSourceFilegroup
(
ctx
,
bootclasspath
)
createApiContributionDefaults
(
ctx
,
bootclasspath
)
}
func
combinedApisModuleFactory
()
android
.
Module
{
...
...
@@ -374,7 +409,7 @@ func (a *CombinedApis) ConvertWithBp2build(ctx android.TopDownMutatorContext) {
"system-server"
:
"-system-server-current.txt"
,
}
for
scopeName
,
suffix
:=
range
scopeToSuffix
{
for
scopeName
,
suffix
:=
range
scopeToSuffix
{
name
:=
a
.
Name
()
+
suffix
var
scope
bazel
.
StringAttribute
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment