2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
7 cr_cronet.py - cr - like helper tool for cronet developers
17 return os
.system(command
)
21 return run ('ninja -C ' + out_dir
+ ' cronet_test_instrumentation_apk')
24 def install(release_arg
):
25 return run ('build/android/adb_install_apk.py ' + release_arg
+ \
26 ' --apk=CronetTest.apk')
29 def test(release_arg
, extra_options
):
30 return run ('build/android/test_runner.py instrumentation '+ \
31 release_arg
+ ' --test-apk=CronetTestInstrumentation ' + \
35 def debug(extra_options
):
36 return run ('build/android/adb_gdb --start ' + \
37 '--activity=.CronetTestActivity ' + \
38 '--program-name=CronetTest ' + \
39 '--package-name=org.chromium.cronet_test_apk ' + \
40 ' '.join(extra_options
))
44 parser
= argparse
.ArgumentParser()
45 parser
.add_argument('command',
55 parser
.add_argument('-r', '--release', action
='store_true',
56 help='use release configuration')
58 options
, extra_options_list
= parser
.parse_known_args()
60 print extra_options_list
61 gyp_defines
= 'GYP_DEFINES="OS=android enable_websockets=0 '+ \
62 'disable_file_support=1 disable_ftp_support=1 '+ \
63 'use_icu_alternatives_on_android=1" '
66 extra_options
= ' '.join(extra_options_list
)
68 out_dir
= 'out/Release'
69 release_arg
= ' --release'
71 if (options
.command
=='gyp'):
72 return run (gyp_defines
+ ' gclient runhooks')
73 if (options
.command
=='sync'):
74 return run ('git pull --rebase && ' + gyp_defines
+ ' gclient sync')
75 if (options
.command
=='build'):
77 if (options
.command
=='install'):
78 return install(release_arg
)
79 if (options
.command
=='proguard'):
80 return run ('ninja -C ' + out_dir
+ ' cronet_sample_proguard_apk')
81 if (options
.command
=='test'):
82 return install(release_arg
) or test(release_arg
, extra_options
)
83 if (options
.command
=='build-test'):
84 return build(out_dir
) or install(release_arg
) or \
85 test(release_arg
, extra_options
)
86 if (options
.command
=='debug'):
87 return install(release_arg
) or debug(extra_options
)
88 if (options
.command
=='build-debug'):
89 return build(out_dir
) or install(release_arg
) or debug(extra_options
)
95 if __name__
== '__main__':