Searched refs:newOsType (Results 1 – 1 of 1) sorted by relevance
/build/soong/android/ |
D | arch.go | 261 func newOsType(name string, class OsClass, defDisabled bool, archTypes ...ArchType) OsType { func 306 Linux = newOsType("linux_glibc", Host, false, X86, X86_64) 308 LinuxMusl = newOsType("linux_musl", Host, false, X86, X86_64, Arm64, Arm) 310 Darwin = newOsType("darwin", Host, false, Arm64, X86_64) 313 LinuxBionic = newOsType("linux_bionic", Host, false, Arm64, X86_64) 315 Windows = newOsType("windows", Host, true, X86, X86_64) 318 Android = newOsType("android", Device, false, Arm, Arm64, Riscv64, X86, X86_64) 322 CommonOS = newOsType("common_os", Generic, false)
|