From b48fd3cc891bf3db0c354dcb6988e244ffd0dd65 Mon Sep 17 00:00:00 2001 From: Mike Klein Date: Mon, 23 Jan 2017 11:58:53 -0500 Subject: GN: add 32-bit and Release iOS builders. And roll recipes to the point where they pass target_cpu to GN, adding x86_64 as an alias for x64. CQ_INCLUDE_TRYBOTS=skia.primary:Build-Mac-Clang-arm64-Debug-GN_iOS,Build-Mac-Clang-arm64-Release-GN_iOS,Build-Mac-Clang-arm-Debug-GN_iOS,Build-Mac-Clang-arm-Release-GN_iOS Change-Id: I1933d5803ec7f59f78576c5a7b16489362905a97 Reviewed-on: https://skia-review.googlesource.com/7403 Reviewed-by: Eric Boren Commit-Queue: Mike Klein --- gn/BUILDCONFIG.gn | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gn/BUILDCONFIG.gn') diff --git a/gn/BUILDCONFIG.gn b/gn/BUILDCONFIG.gn index 23e5288f1a..a89931b432 100644 --- a/gn/BUILDCONFIG.gn +++ b/gn/BUILDCONFIG.gn @@ -48,6 +48,9 @@ if (target_cpu == "") { target_cpu = "arm64" } } +if (target_cpu == "x86_64") { + target_cpu = "x64" +} if (current_cpu == "") { current_cpu = target_cpu } -- cgit v1.2.3