| Index: build/android/gyp/dex.py
|
| diff --git a/build/android/gyp/dex.py b/build/android/gyp/dex.py
|
| index 21e1183e872bacfd10094d05aea99449205a6927..c1e5869d13e5f23bc26bef3ef86b44dd53e3856d 100755
|
| --- a/build/android/gyp/dex.py
|
| +++ b/build/android/gyp/dex.py
|
| @@ -15,7 +15,10 @@ from util import md5_check
|
|
|
| def DoDex(options, paths):
|
| dx_binary = os.path.join(options.android_sdk_tools, 'dx')
|
| - dex_cmd = [dx_binary, '--dex', '--output', options.dex_path] + paths
|
| +
|
| + # See http://crbug.com/272064 for context on --force-jumbo.
|
| + dex_cmd = [dx_binary, '--dex', '--force-jumbo', '--output',
|
| + options.dex_path] + paths
|
|
|
| record_path = '%s.md5.stamp' % options.dex_path
|
| md5_check.CallAndRecordIfStale(
|
|
|