aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/BUILD.gn
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-05-14 13:25:46 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-14 18:48:19 +0000
commit8803ebb470e73a5738cd09c48adbafec062229a8 (patch)
tree7f3a6c5acfcfc8a147d8edd07f225252b4bead87 /gn/BUILD.gn
parent45a6d7159e7c5a03c4191610ff981dd7fc2be7b4 (diff)
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 <djsollen@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'gn/BUILD.gn')
-rw-r--r--gn/BUILD.gn4
1 files changed, 3 insertions, 1 deletions
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) {