webrtc_ios.py 747 Bytes
Newer Older
1 2 3 4 5 6
# Copyright 2014 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

7
import config_util  # pylint: disable=import-error
8 9 10


# This class doesn't need an __init__ method, so we disable the warning
11
# pylint: disable=no-init
12 13
class WebRTCIOS(config_util.Config):
  """Basic Config alias for iOS -> WebRTC."""
14 15 16 17 18

  @staticmethod
  def fetch_spec(props):
    return {
      'alias': {
19
        'config': 'webrtc',
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
        'props': ['--target_os=ios,mac'],
      },
    }

  @staticmethod
  def expected_root(_props):
    return 'src'


def main(argv=None):
  return WebRTCIOS().handle_args(argv)


if __name__ == '__main__':
  sys.exit(main(sys.argv))