Merge "Move transport client code into its own lib"

This commit is contained in:
Chandan Nath
2019-09-23 09:08:19 +00:00
committed by Android (Google) Code Review
11 changed files with 6 additions and 0 deletions

View File

@@ -2,4 +2,5 @@ java_library_static {
name: "services.backup",
srcs: ["java/**/*.java"],
libs: ["services.core"],
static_libs: ["backuplib"],
}

View File

@@ -0,0 +1,5 @@
java_library {
name: "backuplib",
srcs: ["java/**/*.java"],
libs: ["services.core"],
}