Add android_internal fetch spec.
Bug: 856278 Change-Id: I9aa7cd933a54ba675bdeadb7888d0205a080ea62 Reviewed-on: https://chromium-review.googlesource.com/c/1315470 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org>changes/70/1315470/2
parent
6d6e0a8009
commit
52a091f419
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2013 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 AndroidInternal(config_util.Config):
|
||||
"""Basic Config alias for AndroidInternal -> Chromium."""
|
||||
|
||||
@staticmethod
|
||||
def fetch_spec(props):
|
||||
return {
|
||||
'alias': {
|
||||
'config': 'chromium',
|
||||
'props': ['--target_os=android', '--internal=1'],
|
||||
},
|
||||
}
|
||||
|
||||
@staticmethod
|
||||
def expected_root(_props):
|
||||
return ''
|
||||
|
||||
|
||||
def main(argv=None):
|
||||
return AndroidInternal().handle_args(argv)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main(sys.argv))
|
Loading…
Reference in New Issue