INNER CODE UNIT · Python
AppPlatform
efroemling/ballistica · tools/bacommon/app.py:121
class AppPlatform(Enum):
"""Overall platform a build can target.
Each distinct flavor of an app has a unique combination of
AppPlatform and AppVariant. Generally platform describes a set of
hardware, while variant describes a destination or purpose for the
build.
"""
UNKNOWN = 'unknown'
MACOS = 'macos'
WINDOWS = 'windows'
LINUX = 'linux'
ANDROID = 'android'
IOS = 'ios'
TVOS = 'tvos'