| OLD | NEW |
| (Empty) |
| 1 #!/usr/bin/env python | |
| 2 # | |
| 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 | |
| 5 # found in the LICENSE file. | |
| 6 | |
| 7 import optparse | |
| 8 import os | |
| 9 import sys | |
| 10 | |
| 11 from util import build_utils | |
| 12 from util import md5_check | |
| 13 | |
| 14 | |
| 15 def DoDex(options, paths): | |
| 16 dx_binary = os.path.join(options.android_sdk_tools, 'dx') | |
| 17 # See http://crbug.com/272064 for context on --force-jumbo. | |
| 18 dex_cmd = [dx_binary, '--dex', '--force-jumbo', '--output', options.dex_path] | |
| 19 if options.no_locals != '0': | |
| 20 dex_cmd.append('--no-locals') | |
| 21 | |
| 22 dex_cmd += paths | |
| 23 | |
| 24 record_path = '%s.md5.stamp' % options.dex_path | |
| 25 md5_check.CallAndRecordIfStale( | |
| 26 lambda: build_utils.CheckOutput(dex_cmd, print_stderr=False), | |
| 27 record_path=record_path, | |
| 28 input_paths=paths, | |
| 29 input_strings=dex_cmd, | |
| 30 force=not os.path.exists(options.dex_path)) | |
| 31 build_utils.WriteJson( | |
| 32 [os.path.relpath(p, options.output_directory) for p in paths], | |
| 33 options.dex_path + '.inputs') | |
| 34 | |
| 35 | |
| 36 def main(): | |
| 37 args = build_utils.ExpandFileArgs(sys.argv[1:]) | |
| 38 | |
| 39 parser = optparse.OptionParser() | |
| 40 build_utils.AddDepfileOption(parser) | |
| 41 | |
| 42 parser.add_option('--android-sdk-tools', | |
| 43 help='Android sdk build tools directory.') | |
| 44 parser.add_option('--output-directory', | |
| 45 default=os.getcwd(), | |
| 46 help='Path to the output build directory.') | |
| 47 parser.add_option('--dex-path', help='Dex output path.') | |
| 48 parser.add_option('--configuration-name', | |
| 49 help='The build CONFIGURATION_NAME.') | |
| 50 parser.add_option('--proguard-enabled', | |
| 51 help='"true" if proguard is enabled.') | |
| 52 parser.add_option('--proguard-enabled-input-path', | |
| 53 help=('Path to dex in Release mode when proguard ' | |
| 54 'is enabled.')) | |
| 55 parser.add_option('--no-locals', | |
| 56 help='Exclude locals list from the dex file.') | |
| 57 parser.add_option('--inputs', help='A list of additional input paths.') | |
| 58 parser.add_option('--excluded-paths', | |
| 59 help='A list of paths to exclude from the dex file.') | |
| 60 | |
| 61 options, paths = parser.parse_args(args) | |
| 62 | |
| 63 required_options = ('android_sdk_tools',) | |
| 64 build_utils.CheckOptions(options, parser, required=required_options) | |
| 65 | |
| 66 if (options.proguard_enabled == 'true' | |
| 67 and options.configuration_name == 'Release'): | |
| 68 paths = [options.proguard_enabled_input_path] | |
| 69 | |
| 70 if options.inputs: | |
| 71 paths += build_utils.ParseGypList(options.inputs) | |
| 72 | |
| 73 if options.excluded_paths: | |
| 74 # Excluded paths are relative to the output directory. | |
| 75 exclude_paths = build_utils.ParseGypList(options.excluded_paths) | |
| 76 paths = [p for p in paths if not | |
| 77 os.path.relpath(p, options.output_directory) in exclude_paths] | |
| 78 | |
| 79 DoDex(options, paths) | |
| 80 | |
| 81 if options.depfile: | |
| 82 build_utils.WriteDepfile( | |
| 83 options.depfile, | |
| 84 paths + build_utils.GetPythonDependencies()) | |
| 85 | |
| 86 | |
| 87 | |
| 88 if __name__ == '__main__': | |
| 89 sys.exit(main()) | |
| OLD | NEW |