1e611b858f
Having two packages in the same directory makes it harder for go tools to understande the directory structure. For example, in build/soong, "go test ./cc/..." fails with cyclic package imports. Bug: n/a Test: go test ./cc/... (in build/soong) Change-Id: I7a040bf30b1e001680dd43fed9747e9651372274
31 lines
647 B
Text
31 lines
647 B
Text
bootstrap_go_package {
|
|
name: "soong-tradefed",
|
|
pkgPath: "android/soong/tradefed",
|
|
deps: [
|
|
"blueprint",
|
|
"soong-android",
|
|
],
|
|
srcs: [
|
|
"autogen.go",
|
|
"config.go",
|
|
"makevars.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-suite-harness",
|
|
pkgPath: "android/soong/tradefed/suite_harness",
|
|
deps: [
|
|
"blueprint",
|
|
"blueprint-pathtools",
|
|
"blueprint-proptools",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-java",
|
|
],
|
|
srcs: [
|
|
"suite_harness/tradefed_binary.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|