Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: build/android/enable_asserts.py

Issue 10693110: [android] Split top-level scripts and libraries from build/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added __init__.py and enable_asserts.py. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698