@@ -1087,38 +1087,6 @@ func init() {
1087
1087
Name : "darwin-amd64-10_12" ,
1088
1088
HostType : "host-darwin-10_12" ,
1089
1089
})
1090
-
1091
- addBuilder (BuildConfig {
1092
- Name : "android-arm-sdk19" ,
1093
- Notes : "Android ARM device running android-19 (KitKat 4.4), attatched to Mac Mini" ,
1094
- env : []string {"GOOS=android" , "GOARCH=arm" },
1095
- })
1096
- addBuilder (BuildConfig {
1097
- Name : "android-arm64-sdk21" ,
1098
- Notes : "Android arm64 device using the android-21 toolchain, attatched to Mac Mini" ,
1099
- env : []string {"GOOS=android" , "GOARCH=arm64" },
1100
- })
1101
- addBuilder (BuildConfig {
1102
- Name : "android-386-sdk21" ,
1103
- Notes : "Android 386 device using the android-21 toolchain, attatched to Mac Mini" ,
1104
- env : []string {"GOOS=android" , "GOARCH=386" },
1105
- })
1106
- addBuilder (BuildConfig {
1107
- Name : "android-amd64-sdk21" ,
1108
- Notes : "Android amd64 device using the android-21 toolchain, attatched to Mac Mini" ,
1109
- env : []string {"GOOS=android" , "GOARCH=amd64" },
1110
- })
1111
- addBuilder (BuildConfig {
1112
- Name : "darwin-arm-a5ios" ,
1113
- Notes : "iPhone 4S (A5 processor), via a Mac Mini; owned by crawshaw" ,
1114
- env : []string {"GOARCH=arm" , "GOHOSTARCH=amd64" },
1115
- })
1116
- addBuilder (BuildConfig {
1117
- Name : "darwin-arm64-a7ios" ,
1118
- Notes : "iPad Mini 3 (A7 processor), via a Mac Mini; owned by crawshaw" ,
1119
- env : []string {"GOARCH=arm64" , "GOHOSTARCH=amd64" },
1120
- })
1121
-
1122
1090
addBuilder (BuildConfig {
1123
1091
Name : "darwin-arm-a1549ios" ,
1124
1092
HostType : "host-darwin-amd64-eliasnaur-ios" ,
@@ -1150,7 +1118,6 @@ func init() {
1150
1118
"CC_FOR_TARGET=/Users/elias/android-ndk-standalone-arm64/bin/clang" ,
1151
1119
},
1152
1120
})
1153
-
1154
1121
addBuilder (BuildConfig {
1155
1122
Name : "solaris-amd64-oracledev" ,
1156
1123
HostType : "host-solaris-oracle-shawn" ,
@@ -1231,28 +1198,12 @@ func init() {
1231
1198
})
1232
1199
}
1233
1200
1234
- func (c BuildConfig ) isMobile () bool {
1235
- return strings .HasPrefix (c .Name , "android-" ) || strings .HasPrefix (c .Name , "darwin-arm" )
1236
- }
1237
-
1238
1201
// addBuilder adds c to the Builders map after doing some sanity
1239
1202
// checks.
1240
1203
func addBuilder (c BuildConfig ) {
1241
1204
if c .Name == "" {
1242
1205
panic ("empty name" )
1243
1206
}
1244
- if c .isMobile () && c .HostType == "" {
1245
- htyp := "host-" + c .Name
1246
- if _ , ok := Hosts [htyp ]; ! ok {
1247
- Hosts [htyp ] = & HostConfig {
1248
- HostType : htyp ,
1249
- IsReverse : true ,
1250
- goBootstrapURLTmpl : "https://storage.googleapis.com/$BUCKET/go1.4-darwin-amd64.tar.gz" ,
1251
- ReverseAliases : []string {c .Name },
1252
- }
1253
- c .HostType = htyp
1254
- }
1255
- }
1256
1207
if c .HostType == "" {
1257
1208
panic (fmt .Sprintf ("missing HostType for builder %q" , c .Name ))
1258
1209
}
0 commit comments