summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbohu <bohu@google.com>2017-08-15 11:40:39 -0700
committerbohu <bohu@google.com>2017-08-15 11:47:22 -0700
commit61a20c7dcb8e2049e8207b2a2c3907924ef45496 (patch)
tree54e273f9542d73fa10a5dd55eb775bf61c3d68b8
parent586e4aafd493b17e6b640b2431a5f7fdde108d24 (diff)
downloadandroid_device_generic_goldfish-61a20c7dcb8e2049e8207b2a2c3907924ef45496.tar.gz
android_device_generic_goldfish-61a20c7dcb8e2049e8207b2a2c3907924ef45496.tar.bz2
android_device_generic_goldfish-61a20c7dcb8e2049e8207b2a2c3907924ef45496.zip
goldfish: add device level mk file
Similar to other devices, we only look at the mk files under this directory when building emulator images. BUG: 64717967 Change-Id: I854decd27996f930d2f46787d705ab434f39f6c8
-rw-r--r--Android.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..fef7f95
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,22 @@
+#
+# Copyright 2017 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.
+#
+
+LOCAL_PATH := $(call my-dir)
+
+ifeq ($(BUILD_QEMU_IMAGES),true)
+ subdir_makefiles=$(call first-makefiles-under,$(LOCAL_PATH))
+ $(foreach mk,$(subdir_makefiles),$(info including $(mk) ...)$(eval include $(mk)))
+endif