Split CtsSignatureTestCases into two CTS packages

CtsSignatureTestCases contained two tests, one for checking the API
signature and one for verifying intents provided by the various
packages to ensure they do not infringe on the android.intent.action
namespace. This splits each test into its own package,
CtsApiSignatureTestCases and CtsIntentSignatureTestCases respectively.

This is in preparation for expanding the CtsApiSignatureTestCases to
test a number of different package configurations, e.g. packages with
and without <use-library android:name="android.test.runner"/>, packages
targeted at an earlier release or the current release, etc.

Tested using:
    m -j32 CtsApiSignatureTestCases && \
        cts-tradefed run cts -a arm64-v8a -m CtsApiSignatureTestCases
And:
    m -j32 CtsIntentSignatureTestCases && \
        cts-tradefed run cts -a arm64-v8a -m CtsIntentSignatureTestCases

Bug: 35192974
Bug: 30188076
Test: see above
Change-Id: I7504f6ddd6e2e73ec111d5b527e85c2a9c74b34d
diff --git a/tests/signature/api-check/Android.mk b/tests/signature/api-check/Android.mk
new file mode 100644
index 0000000..4c4f537
--- /dev/null
+++ b/tests/signature/api-check/Android.mk
@@ -0,0 +1,33 @@
+# Copyright (C) 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)
+include $(CLEAR_VARS)
+
+# don't include this package in any target
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := CtsApiSignatureTestCases
+
+# Tag this module as a cts test artifact
+LOCAL_COMPATIBILITY_SUITE := cts general-tests
+
+LOCAL_SDK_VERSION := current
+
+LOCAL_STATIC_JAVA_LIBRARIES := \
+    cts-signature-common \
+
+include $(BUILD_CTS_PACKAGE)