allwinner_a64/android/external/r8/tools/benchmarks/get_deps.py
2018-08-08 16:14:42 +08:00

21 lines
555 B
Python

#!/usr/bin/env python
# Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
import os
import sys
import main_utils
utils = main_utils.GetUtils();
ANDROID_EMULATORS = os.path.join(utils.TOOLS_DIR, 'benchmarks',
'android-sdk-linux.tar.gz.sha1')
def Main():
utils.DownloadFromGoogleCloudStorage(ANDROID_EMULATORS)
if __name__ == '__main__':
sys.exit(Main())