target_cpu -> current_cpu in chromeos/BUILD.gn

BUG=616819

Review-Url: https://codereview.chromium.org/2038083003
Cr-Commit-Position: refs/heads/master@{#398773}
diff --git a/chromeos/BUILD.gn b/chromeos/BUILD.gn
index 6529b17..7929922 100644
--- a/chromeos/BUILD.gn
+++ b/chromeos/BUILD.gn
@@ -47,7 +47,7 @@
   ]
   sources = gypi_values.chromeos_sources
   defines = [ "CHROMEOS_IMPLEMENTATION" ]
-  if (target_cpu == "arm" || target_cpu == "x86") {
+  if (current_cpu == "arm" || current_cpu == "x86") {
     defines += [ "BINDER_IPC_32BIT" ]
   }
 }
@@ -171,7 +171,7 @@
   ]
   sources = gypi_values.chromeos_test_sources
   if (use_binder) {
-    if (target_cpu == "arm" || target_cpu == "x86") {
+    if (current_cpu == "arm" || current_cpu == "x86") {
       defines += [ "BINDER_IPC_32BIT" ]
     }
     sources += gypi_values.chromeos_binder_test_sources