aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2016-10-21 10:58:52 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-10-21 15:19:32 +0000
commit4e56a91393733359ba19967a78df26184e53854e (patch)
treee21e3189b47c3690923038523f012eefee8228a2 /third_party
parent9cdd2abc30520d6f425afbc2d7bd7b15f8b11ba1 (diff)
Add Android viewer to GN
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3761 Change-Id: If971e275ed377cd733d01f62622d408479632465 Reviewed-on: https://skia-review.googlesource.com/3761 Commit-Queue: Jim Van Verth <jvanverth@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/native_app_glue/BUILD.gn17
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/native_app_glue/BUILD.gn b/third_party/native_app_glue/BUILD.gn
new file mode 100644
index 0000000000..a25065bb60
--- /dev/null
+++ b/third_party/native_app_glue/BUILD.gn
@@ -0,0 +1,17 @@
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+declare_args() {
+}
+
+import("../third_party.gni")
+
+third_party("native_app_glue") {
+ public_include_dirs = [ "$ndk/sources/android/native_app_glue" ]
+
+ sources = [
+ "$ndk/sources/android/native_app_glue/android_native_app_glue.c",
+ ]
+}