summaryrefslogtreecommitdiff
path: root/mali/Android.mk
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2022-02-16 07:40:03 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-02-16 07:40:03 +0000
commitb2bb602e7be31f80b8d2a74cd283ff5cb70ea7c9 (patch)
treef0abcbb9970bde49ee3b2c7531b022fac4315cfa /mali/Android.mk
parent15940eb7032ee053c104a6433f3aa47372502caa (diff)
parent92fd6ed17beaad46ede504577b65f45dd015190a (diff)
downloadhikey-b2bb602e7be31f80b8d2a74cd283ff5cb70ea7c9.tar.gz
Merge changes I22cfd132,If6784590 am: 92fd6ed17b
Original change: https://android-review.googlesource.com/c/device/linaro/hikey/+/1987334 Change-Id: I1057fa53829e3cbf9187cb07ac37fede6aad04b8
Diffstat (limited to 'mali/Android.mk')
-rw-r--r--mali/Android.mk31
1 files changed, 31 insertions, 0 deletions
diff --git a/mali/Android.mk b/mali/Android.mk
new file mode 100644
index 00000000..40604835
--- /dev/null
+++ b/mali/Android.mk
@@ -0,0 +1,31 @@
+#
+# Copyright (C) 2015 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.
+#
+
+# WARNING: Everything listed here will be built on ALL platforms,
+# including x86, the emulator, and the SDK. Modules must be uniquely
+# named (liblights.panda), and must build everywhere, or limit themselves
+# to only building on ARM if they include assembly. Individual makefiles
+# are responsible for having their own logic, for fine-grained control.
+
+ifneq ($(filter hikey%, $(TARGET_DEVICE)),)
+
+LOCAL_PATH := $(call my-dir)
+
+# if some modules are built directly from this directory (not subdirectories),
+# their rules should be written here.
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
+endif