From 8803ebb470e73a5738cd09c48adbafec062229a8 Mon Sep 17 00:00:00 2001 From: Mike Klein Date: Mon, 14 May 2018 13:25:46 -0400 Subject: update to NDK r17 We haven't done this in a while. The only interesting change I've noticed so far is that we no longer need to link libandroid_support when targeting API 21+. Change-Id: I6506fbe7bd02534f1ea136f2164acab7f44c29e0 Reviewed-on: https://skia-review.googlesource.com/128009 Reviewed-by: Derek Sollenberger Commit-Queue: Mike Klein --- gn/BUILD.gn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gn/BUILD.gn') diff --git a/gn/BUILD.gn b/gn/BUILD.gn index 4c6eac27b0..ac036c28ee 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -169,8 +169,10 @@ config("default") { libs += [ "c++_static", "c++abi", - "android_support", ] + if (ndk_api < 21) { + libs += [ "android_support" ] + } } if (is_ios) { -- cgit v1.2.3