Skip to content

Commit c5a6316

Browse files
xaionaro@dx.centerxaionaro@dx.center
authored andcommitted
Rename project: aidl -> binder
1 parent d6d4d3f commit c5a6316

4,591 files changed

Lines changed: 9105 additions & 9105 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ jobs:
5858
uses: softprops/action-gh-release@v2
5959
with:
6060
files: |
61-
builds/aidlcli-linux-arm64
62-
builds/aidlcli-linux-amd64
61+
builds/bindercli-linux-arm64
62+
builds/bindercli-linux-amd64
6363
generate_release_notes: true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/aidlgen
2-
/aidlcli
2+
/bindercli
33
*.test
44
*.out
55
*.prof

Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.PHONY: generate genversions test e2e vet build build-examples lint clean readme smoke \
2-
aidlcli genaidlcli list-commands check-generated release
2+
bindercli genbindercli list-commands check-generated release
33

44
# Generated top-level directories.
55
GENERATED_DIRS := android com fuzztest libgui_test_server parcelables src
@@ -33,11 +33,11 @@ build:
3333
go build ./cmd/...
3434
@for d in examples/*/; do echo "Building $$d..."; go build "./$$d"; done
3535

36-
# Build aidlcli release binaries for arm64 and amd64.
36+
# Build bindercli release binaries for arm64 and amd64.
3737
release:
3838
@mkdir -p builds
39-
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o builds/aidlcli-linux-arm64 ./cmd/aidlcli/
40-
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o builds/aidlcli-linux-amd64 ./cmd/aidlcli/
39+
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o builds/bindercli-linux-arm64 ./cmd/bindercli/
40+
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o builds/bindercli-linux-amd64 ./cmd/bindercli/
4141

4242
# Run linter.
4343
lint:
@@ -51,18 +51,18 @@ readme:
5151
smoke:
5252
go run ./tools/cmd/gen_e2e_smoke .
5353

54-
# Regenerate aidlcli registry and command dispatch code.
55-
genaidlcli:
56-
go run ./tools/cmd/genaidlcli
54+
# Regenerate bindercli registry and command dispatch code.
55+
genbindercli:
56+
go run ./tools/cmd/genbindercli
5757

58-
# Build the aidlcli tool.
59-
aidlcli:
58+
# Build the bindercli tool.
59+
bindercli:
6060
@mkdir -p builds
61-
go build -o builds/aidlcli ./cmd/aidlcli
61+
go build -o builds/bindercli ./cmd/bindercli
6262

63-
# List all available aidlcli subcommands.
63+
# List all available bindercli subcommands.
6464
list-commands:
65-
go run ./cmd/aidlcli --help 2>&1 | grep '^ ' | awk '{print $$1}'
65+
go run ./cmd/bindercli --help 2>&1 | grep '^ ' | awk '{print $$1}'
6666

6767
# Verify generated code matches a clean regeneration.
6868
check-generated:

README.md

Lines changed: 681 additions & 681 deletions
Large diffs are not rendered by default.

android/accessibilityservice/accessibilitygestureevent.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/accessibilityservice/accessibilityserviceinfo.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/accessibilityservice/iaccessibilityserviceclient.go

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/accessibilityservice/iaccessibilityserviceconnection.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/accessibilityservice/ibrailledisplayconnection.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/accessibilityservice/ibrailledisplaycontroller.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)