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

Side by Side Diff: build/android/gyp/dex.py

Issue 180113011: android: Remove unused --stamp option from dex.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 500 Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2013 The Chromium Authors. All rights reserved. 3 # Copyright 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 import optparse 7 import optparse
8 import os 8 import os
9 import sys 9 import sys
10 10
(...skipping 26 matching lines...) Expand all
37 parser.add_option('--dex-path', help='Dex output path.') 37 parser.add_option('--dex-path', help='Dex output path.')
38 parser.add_option('--configuration-name', 38 parser.add_option('--configuration-name',
39 help='The build CONFIGURATION_NAME.') 39 help='The build CONFIGURATION_NAME.')
40 parser.add_option('--proguard-enabled', 40 parser.add_option('--proguard-enabled',
41 help='"true" if proguard is enabled.') 41 help='"true" if proguard is enabled.')
42 parser.add_option('--proguard-enabled-input-path', 42 parser.add_option('--proguard-enabled-input-path',
43 help=('Path to dex in Release mode when proguard ' 43 help=('Path to dex in Release mode when proguard '
44 'is enabled.')) 44 'is enabled.'))
45 parser.add_option('--no-locals', 45 parser.add_option('--no-locals',
46 help='Exclude locals list from the dex file.') 46 help='Exclude locals list from the dex file.')
47 parser.add_option('--stamp', help='Path to touch on success.')
48 47
49 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja. 48 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja.
50 parser.add_option('--ignore', help='Ignored.') 49 parser.add_option('--ignore', help='Ignored.')
51 50
52 options, paths = parser.parse_args() 51 options, paths = parser.parse_args()
53 52
54 if (options.proguard_enabled == 'true' 53 if (options.proguard_enabled == 'true'
55 and options.configuration_name == 'Release'): 54 and options.configuration_name == 'Release'):
56 paths = [options.proguard_enabled_input_path] 55 paths = [options.proguard_enabled_input_path]
57 56
58 DoDex(options, paths) 57 DoDex(options, paths)
59 58
60 if options.stamp:
61 build_utils.Touch(options.stamp)
62
63 59
64 if __name__ == '__main__': 60 if __name__ == '__main__':
65 sys.exit(main(sys.argv)) 61 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698