aboutsummaryrefslogtreecommitdiff
path: root/apps/HelloPDK/jni/Android.mk
diff options
context:
space:
mode:
authorTrevor Radcliffe <tradical@google.com>2021-10-15 17:13:26 +0000
committerTrevor Radcliffe <tradical@google.com>2021-10-19 20:53:32 +0000
commit064db4a5d73c7849db0890e2194170424778bd09 (patch)
tree7546851887a05858d9790eb8869b5778bf4cd70e /apps/HelloPDK/jni/Android.mk
parentdbc297bfb51776ff35a069310f897e81170d2050 (diff)
downloadpdk-064db4a5d73c7849db0890e2194170424778bd09.tar.gz
Migrate HelloPDK to Soong
Also migrates dependency Fixes: 203211370 Test: Compare APKs and do main build Test: Treehugger Change-Id: I4f7705b3290e3cf74986472ff85083db7322b949
Diffstat (limited to 'apps/HelloPDK/jni/Android.mk')
-rw-r--r--apps/HelloPDK/jni/Android.mk40
1 files changed, 0 insertions, 40 deletions
diff --git a/apps/HelloPDK/jni/Android.mk b/apps/HelloPDK/jni/Android.mk
deleted file mode 100644
index 8f8bb3d..0000000
--- a/apps/HelloPDK/jni/Android.mk
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright (C) 2012 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-# enable jni only if java build is supported, for PDK
-ifneq ($(TARGET_BUILD_JAVA_SUPPORT_LEVEL),)
-
-LOCAL_PATH:= $(call my-dir)
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := libhellojni_jni
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := \
- HelloJniNative.cpp
-
-LOCAL_CFLAGS := -Wall -Werror
-
-LOCAL_C_INCLUDES := $(JNI_H_INCLUDE)
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_SHARED_LIBRARY)
-
-endif # java supproted