Index: build/android/gyp/dex.py |
diff --git a/build/android/gyp/dex.py b/build/android/gyp/dex.py |
index 778a8c27bd44fe8123180e109fe101bc856cd586..4e6233270aeec7bebbd55462858b23b2f21e559d 100755 |
--- a/build/android/gyp/dex.py |
+++ b/build/android/gyp/dex.py |
@@ -15,9 +15,7 @@ |
def DoDex(options, paths): |
dx_binary = os.path.join(options.android_sdk_tools, 'dx') |
# See http://crbug.com/272064 for context on --force-jumbo. |
- # --num-threads=10 made final dexing go from 10s -> 5s on a z620. |
- dex_cmd = [dx_binary, '--num-threads=10', '--dex', '--force-jumbo', |
- '--output', options.dex_path] |
+ dex_cmd = [dx_binary, '--dex', '--force-jumbo', '--output', options.dex_path] |
if options.no_locals != '0': |
dex_cmd.append('--no-locals') |