Chromium Code Reviews| 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 |