Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions services/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

**Bug Fixes**

* The obsolete FileObserver protocol has been removed in favor of the
LocalSocket-based protocol.

**New Features**

**Breaking Changes**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,6 @@ package(default_applicable_licenses = ["//services:license"])

licenses(["notice"])

kt_android_library(
name = "coroutine_file_observer",
srcs = [
"CoroutineFileObserver.kt",
],
visibility = ["//visibility:private"],
deps = [
"@maven//:org_jetbrains_kotlinx_kotlinx_coroutines_core",
],
)

kt_android_library(
name = "file_observer_protocol",
srcs = [
"FileObserverProtocol.kt",
"Messages.kt",
],
visibility = [
"//services/shellexecutor/javatests/androidx/test/services/shellexecutor:__subpackages__",
],
)

proto_library(
name = "local_socket_protocol_pb",
srcs = ["local_socket_protocol.proto"],
Expand Down Expand Up @@ -61,21 +39,17 @@ kt_android_library(
name = "exec_server",
srcs = [
"BlockingPublish.java",
"FileObserverShellMain.kt",
"LocalSocketShellMain.kt",
"ShellCommand.java",
"ShellCommandExecutor.java",
"ShellCommandExecutorServer.java",
"ShellCommandFileObserverExecutorServer.kt",
"ShellCommandLocalSocketExecutorServer.kt",
"ShellExecSharedConstants.java",
"ShellMain.java",
],
idl_srcs = ["Command.aidl"],
visibility = [":export"],
deps = [
":coroutine_file_observer",
":file_observer_protocol",
":local_socket_protocol",
":local_socket_protocol_pb_java_proto_lite",
"//services/speakeasy/java/androidx/test/services/speakeasy:protocol",
Expand All @@ -93,20 +67,16 @@ kt_android_library(
"ClientNotConnected.java",
"ShellCommand.java",
"ShellCommandClient.java",
"ShellCommandFileObserverClient.kt",
"ShellCommandLocalSocketClient.kt",
"ShellExecSharedConstants.java",
"ShellExecutor.java",
"ShellExecutorFactory.java",
"ShellExecutorFileObserverImpl.kt",
"ShellExecutorImpl.java",
"ShellExecutorLocalSocketImpl.kt",
],
idl_srcs = ["Command.aidl"],
visibility = [":export"],
deps = [
":coroutine_file_observer",
":file_observer_protocol",
":local_socket_protocol",
":local_socket_protocol_pb_java_proto_lite",
"//services/speakeasy/java/androidx/test/services/speakeasy:protocol",
Expand Down

This file was deleted.

Loading
Loading