OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
Satish
2012/07/06 13:21:36
newline after this
bulach
2012/07/06 13:42:09
Done.
| |
2 # Copyright (c) 2012 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. | |
5 | |
6 """Enables dalvik vm asserts in the android device.""" | |
Satish
2012/07/06 13:21:36
Is this functionality used by any of the build too
bulach
2012/07/06 13:42:09
not sure I understood...
build/android is about t
Satish
2012/07/06 13:47:39
I'm thinking build/android should contain only scr
| |
7 | |
8 from pylib import android_commands | |
9 import optparse | |
10 import os | |
11 import sys | |
12 | |
13 | |
14 def main(argv): | |
15 option_parser = optparse.OptionParser() | |
16 option_parser.add_option('--enable_asserts', dest='set_asserts', | |
17 action='store_true', default=None, | |
18 help='Sets the dalvik.vm.enableassertions property to "all"') | |
19 option_parser.add_option('--disable_asserts', dest='set_asserts', | |
20 action='store_false', default=None, | |
21 help='Removes the dalvik.vm.enableassertions property') | |
22 options, args = option_parser.parse_args(argv) | |
23 | |
24 commands = android_commands.AndroidCommands() | |
25 if options.set_asserts != None: | |
26 if commands.SetJavaAssertsEnabled(options.set_asserts): | |
27 commands.Reboot(full_reboot=False) | |
28 | |
29 | |
30 if __name__ == '__main__': | |
31 main(sys.argv) | |
OLD | NEW |