blob: ae971442e0fddad414b2525e024eba1a6fa0ade8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/usr/bin/python
# 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.
"""
cr_cronet.py - cr - like helper tool for cronet developers
"""
import argparse
import os
import sys
def run(command):
print command
return os.system(command)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('command',
choices=['init',
'sync',
'build',
'install',
'test',
'debug'])
options = parser.parse_args()
print options
print options.command
gyp_defines = 'GYP_DEFINES="OS=android enable_websockets=0 '+ \
'disable_file_support=1 disable_ftp_support=1 '+ \
'use_icu_alternatives_on_android=1" '
if (options.command=='init'):
return run (gyp_defines + ' gclient runhooks')
if (options.command=='sync'):
return run ('git pull --rebase && ' + gyp_defines + ' gclient sync')
if (options.command=='build'):
return run ('ninja -C out/Debug cronet_sample_test_apk')
if (options.command=='install'):
return run ('build/android/adb_install_apk.py --apk=CronetSample.apk')
if (options.command=='test'):
return run ('build/android/test_runner.py instrumentation '+ \
'--test-apk=CronetSampleTest')
parser.print_help()
return 1
if __name__ == '__main__':
sys.exit(main())
|