Files
chromium_depot_tools/fetch_configs/ios_internal.py
John Budorick d05ca1537c Invert ios_internal fetch spec.
Bug: 803846
Change-Id: I8431cb0e9c7684ae9302749734bb74cc924d9f25
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1461236
Reviewed-by: Justin Cohen <justincohen@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Reviewed-by: Aaron Gable <agable@chromium.org>
Auto-Submit: John Budorick <jbudorick@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>
2019-06-13 17:29:18 +00:00

40 lines
858 B
Python

# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
import config_util # pylint: disable=import-error
# This class doesn't need an __init__ method, so we disable the warning
# pylint: disable=no-init
class IOSInternal(config_util.Config):
"""Basic Config class for Chrome on iOS."""
@staticmethod
def fetch_spec(props):
return {
'alias': {
'config': 'chromium',
'props': [
'--flash=False',
'--internal=True',
'--target_os=ios',
'--target_os_only=True',
],
},
}
@staticmethod
def expected_root(_props):
return ''
def main(argv=None):
return IOSInternal().handle_args(argv)
if __name__ == '__main__':
sys.exit(main(sys.argv))