summaryrefslogtreecommitdiff
path: root/cc/proto_test.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2021-07-20 09:47:41 -0700
committer Colin Cross <ccross@android.com> 2021-07-20 12:46:48 -0700
commit0c66bc615b399d2201b15b4c9052066db04a3f5e (patch)
treebe8334e4662f4bf137d2231dc92755e44fc85d5e /cc/proto_test.go
parentae86338676084cf5966adf99f34e7086f9687edc (diff)
Replace android.BuildOs with Config.BuildOS
Replace the android.BuildOs constant with Config.BuildOS so that it can vary based on the product config. Bug: 190084016 Test: all Soong tests Change-Id: Ia67f872d8b2ab788747a22e3a9659dc21c9775cd
Diffstat (limited to 'cc/proto_test.go')
-rw-r--r--cc/proto_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/proto_test.go b/cc/proto_test.go
index b9c89c744..abcb27304 100644
--- a/cc/proto_test.go
+++ b/cc/proto_test.go
@@ -51,7 +51,7 @@ func TestProto(t *testing.T) {
},
}`)
- buildOS := android.BuildOs.String()
+ buildOS := ctx.Config().BuildOS.String()
proto := ctx.ModuleForTests("libfoo", "android_arm_armv7-a-neon_shared").Output("proto/a.pb.cc")
foobar := ctx.ModuleForTests("protoc-gen-foobar", buildOS+"_x86_64")