aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-11-15 01:09:27 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-11-15 01:09:27 +0000
commit61d5f9a7c74004c2ad38fab7addb304c126b3353 (patch)
tree7dad1ddcf1ced0ff1337e8bc71de817dfd047572
parent5857f7c1a9b4361fb7c7d5d94e646d2b4b691faa (diff)
parent5f45e81f84caa07f0d0ae2baa4181a2a88303279 (diff)
downloadbuild_soong-61d5f9a7c74004c2ad38fab7addb304c126b3353.tar.gz
build_soong-61d5f9a7c74004c2ad38fab7addb304c126b3353.tar.bz2
build_soong-61d5f9a7c74004c2ad38fab7addb304c126b3353.zip
-rw-r--r--cc/test.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/cc/test.go b/cc/test.go
index 96049db8..f7180b56 100644
--- a/cc/test.go
+++ b/cc/test.go
@@ -16,7 +16,6 @@ package cc
import (
"path/filepath"
- "runtime"
"strings"
"android/soong/android"
@@ -377,16 +376,6 @@ func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Pat
}
func NewBenchmark(hod android.HostOrDeviceSupported) *Module {
- // Benchmarks aren't supported on Darwin
- if runtime.GOOS == "darwin" {
- switch hod {
- case android.HostAndDeviceSupported:
- hod = android.DeviceSupported
- case android.HostSupported:
- hod = android.NeitherHostNorDeviceSupported
- }
- }
-
module, binary := NewBinary(hod)
module.multilib = android.MultilibBoth
binary.baseInstaller = NewBaseInstaller("benchmarktest", "benchmarktest64", InstallInData)