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

Unified Diff: chromeos/BUILD.gn

Issue 2038083003: 💫 target_cpu -> current_cpu in chromeos/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@monochrome
Patch Set: Created 4 years, 6 months 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: chromeos/BUILD.gn
diff --git a/chromeos/BUILD.gn b/chromeos/BUILD.gn
index 6529b179eb4b5b685d17b86229b26112d7cf44d4..79299222cdf4584f1a8dc4c449500e2d9c3afdbc 100644
--- a/chromeos/BUILD.gn
+++ b/chromeos/BUILD.gn
@@ -47,7 +47,7 @@ component("chromeos") {
]
sources = gypi_values.chromeos_sources
defines = [ "CHROMEOS_IMPLEMENTATION" ]
- if (target_cpu == "arm" || target_cpu == "x86") {
+ if (current_cpu == "arm" || current_cpu == "x86") {
oshima 2016/06/03 19:04:31 I'm not sure if this is the right thing. defer to
defines += [ "BINDER_IPC_32BIT" ]
}
}
@@ -171,7 +171,7 @@ test("chromeos_unittests") {
]
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
« 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