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

Unified Diff: build/android/devil_chromium.py

Issue 1511983002: [Android] Add x86_64 to devil_chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on mips fix Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/devil_chromium.py
diff --git a/build/android/devil_chromium.py b/build/android/devil_chromium.py
index 1ccc0e9c12936ffe811c5402a9f993f6f655e388..d8a3d5d4f44ecc814753786dd06c193c05974a11 100644
--- a/build/android/devil_chromium.py
+++ b/build/android/devil_chromium.py
@@ -16,9 +16,10 @@ _DEVIL_BUILD_PRODUCT_DEPS = {
'forwarder_device': {
'armeabi-v7a': 'forwarder_dist',
'arm64-v8a': 'forwarder_dist',
- 'x86': 'forwarder_dist',
'mips': 'forwarder_dist',
'mips64': 'forwarder_dist',
+ 'x86': 'forwarder_dist',
+ 'x86_64': 'forwarder_dist',
},
'forwarder_host': {
'any': 'host_forwarder',
@@ -26,9 +27,10 @@ _DEVIL_BUILD_PRODUCT_DEPS = {
'md5sum_device': {
'armeabi-v7a': 'md5sum_dist',
'arm64-v8a': 'md5sum_dist',
- 'x86': 'md5sum_dist',
'mips': 'md5sum_dist',
'mips64': 'md5sum_dist',
+ 'x86': 'md5sum_dist',
+ 'x86_64': 'md5sum_dist',
},
'md5sum_host': {
'any': 'md5sum_bin_host',
« 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