Move partner androidmk and bpfix files to match their package path

Using a gomod-aware editor with build/soong requires that files
in build/soong can be mapped to the android/soong package path.
Move the partner androidmk and bpfix files such that their path
matches the package path when the android/soong package prefix is
replaced with the build/soong path prefix.

Test: go test ./...
Test: m bpfix androidmk partner_bpfix partner_androidmk
Change-Id: Ic7f7aad9e5eb9178eef0383f0b37e4fb93ce8314
This commit is contained in:
Colin Cross
2019-11-08 14:17:49 -08:00
parent 2d5ce8538b
commit ce23942f3c
8 changed files with 19 additions and 21 deletions

View File

@@ -16,10 +16,8 @@
package main
import (
"android/soong/bpfix/bpfix/cmd"
)
import "android/soong/bpfix/cmd_lib"
func main() {
cmd.Run()
cmd_lib.Run()
}