aboutsummaryrefslogtreecommitdiffstats
path: root/build/plugins/ios_app_settings.py
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /build/plugins/ios_app_settings.py
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'build/plugins/ios_app_settings.py')
-rw-r--r--build/plugins/ios_app_settings.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/build/plugins/ios_app_settings.py b/build/plugins/ios_app_settings.py
deleted file mode 100644
index 60ec0b4b52..0000000000
--- a/build/plugins/ios_app_settings.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import _common as common
-import ymake
-import os
-
-def onios_app_settings(unit, *args):
- tail, kv = common.sort_by_keywords(
- {'OS_VERSION': 1, 'DEVICES': -1},
- args
- )
- if tail:
- ymake.report_configure_error('Bad IOS_COMMON_SETTINGS usage - unknown data: ' + str(tail))
- if kv.get('OS_VERSION', []):
- unit.onios_app_common_flags(['--minimum-deployment-target', kv.get('OS_VERSION', [])[0]])
- unit.onios_app_assets_flags(['--filter-for-device-os-version', kv.get('OS_VERSION', [])[0]])
- devices_flags = []
- for device in kv.get('DEVICES', []):
- devices_flags += ['--target-device', device]
- if devices_flags:
- unit.onios_app_common_flags(devices_flags)