| Index: sandbox/win/BUILD.gn
|
| diff --git a/sandbox/win/BUILD.gn b/sandbox/win/BUILD.gn
|
| index 0d9d1fb59947754efedff6483885fddd4581a0de..c350cd74c36cbb54285699a335a8ce4cb037d28d 100644
|
| --- a/sandbox/win/BUILD.gn
|
| +++ b/sandbox/win/BUILD.gn
|
| @@ -135,7 +135,7 @@ source_set("sandbox") {
|
| "src/window.h",
|
| ]
|
|
|
| - if (cpu_arch == "x64") {
|
| + if (current_cpu == "x64") {
|
| sources += [
|
| "src/interceptors_64.cc",
|
| "src/interceptors_64.h",
|
| @@ -143,7 +143,7 @@ source_set("sandbox") {
|
| "src/service_resolver_64.cc",
|
| "src/Wow64_64.cc",
|
| ]
|
| - } else if (cpu_arch == "x86") {
|
| + } else if (current_cpu == "x86") {
|
| sources += [
|
| "src/resolver_32.cc",
|
| "src/service_resolver_32.cc",
|
| @@ -167,7 +167,7 @@ source_set("sandbox") {
|
| ]
|
| }
|
|
|
| -if (cpu_arch == "x86") {
|
| +if (current_cpu == "x86") {
|
| # Make a target that copies the wow_helper files to the out dir.
|
| #
|
| # TODO(brettw) we can probably just build this now that we have proper
|
|
|