Searched refs:newOsType (Results 1 – 1 of 1) sorted by relevance
/build/soong/android/ |
D | arch.go | 260 func newOsType(name string, class OsClass, defDisabled bool, archTypes ...ArchType) OsType { func 327 Linux = newOsType("linux_glibc", Host, false, X86, X86_64) 329 Darwin = newOsType("darwin", Host, false, X86_64) 332 LinuxBionic = newOsType("linux_bionic", Host, false, Arm64, X86_64) 334 Windows = newOsType("windows", Host, true, X86, X86_64) 337 Android = newOsType("android", Device, false, Arm, Arm64, X86, X86_64) 339 Fuchsia = newOsType("fuchsia", Device, false, Arm64, X86_64) 343 CommonOS = newOsType("common_os", Generic, false)
|