From 3150ec6be91a9611064cf3697d7e179d143c2e8d Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Tue, 14 Mar 2017 16:22:32 -0400 Subject: Added support for building for tvOS This change is just to add support for building for tvOS. It is exactly the same as iOS, just using a different SDK. I had to change the two lines for libjpeg-turbo so that it will run for both tvOS and iOS. BUG=skia: Change-Id: I6ae5fc4257df74c0f321e5d2d71584f6a52ec3a6 Reviewed-on: https://skia-review.googlesource.com/9660 Commit-Queue: Mike Klein Reviewed-by: Mike Klein --- gn/BUILDCONFIG.gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gn/BUILDCONFIG.gn') diff --git a/gn/BUILDCONFIG.gn b/gn/BUILDCONFIG.gn index 6ec5e67fe2..2b3ae33292 100644 --- a/gn/BUILDCONFIG.gn +++ b/gn/BUILDCONFIG.gn @@ -37,7 +37,8 @@ if (current_os == "") { is_android = current_os == "android" is_fuchsia = current_os == "fuchsia" -is_ios = current_os == "ios" +is_ios = current_os == "ios" || current_os == "tvos" +is_tvos = current_os == "tvos" is_linux = current_os == "linux" is_mac = current_os == "mac" is_win = current_os == "win" -- cgit v1.2.3