Revert "Update --local-engine to account for changed host architecture of 32-bit Android debug builds. (#11251)" (#11259)

This reverts commit 3f514fcfdf.
This commit is contained in:
Ryan Macnak
2017-07-17 13:47:03 -07:00
committed by GitHub
parent 16ae29b56d
commit fce76bcfd6
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
7480e32854606e554ae37f8bd241c050bdc565c4
f56da86f9807a7d4c924cdb5a28d77baad0537b1

View File

@@ -212,7 +212,7 @@ class LocalEngineArtifacts extends Artifacts {
String _genSnapshotPath(TargetPlatform platform, BuildMode mode) {
String clang;
if (platform == TargetPlatform.ios) {
if (platform == TargetPlatform.ios || mode == BuildMode.debug) {
clang = 'clang_x64';
} else {
clang = getCurrentHostPlatform() == HostPlatform.darwin_x64 ? 'clang_i386' : 'clang_x86';