Lines Matching full:options
15 def DoDex(options, paths):
16 dx_binary = os.path.join(options.android_sdk_tools, 'dx')
18 dex_cmd = [dx_binary, '--dex', '--force-jumbo', '--output', options.dex_path]
19 if options.no_locals != '0':
23 record_path = '%s.md5.stamp' % options.dex_path
30 build_utils.Touch(options.dex_path)
52 options, paths = parser.parse_args()
54 if (options.proguard_enabled == 'true'
55 and options.configuration_name == 'Release'):
56 paths = [options.proguard_enabled_input_path]
58 DoDex(options, paths)
60 if options.stamp:
61 build_utils.Touch(options.stamp)