summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-05-14 20:50:41 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-05-14 20:50:41 +0000
commit865961d8ccb45a95a45ca3051f1c8cb4124402f2 (patch)
tree7c06b26377bf296f70462a0350ebd8a23c476919
parent09796949a167dfcd65a1a4d35a37d9492322f3f5 (diff)
parentb55575bf19b8461154e9f64b97a5f1664312f1e4 (diff)
downloadcontexthub-master.tar.gz
Merge "Remove unused Android.mk under contexthub/firmware/variant" into mainHEADmastermain
-rw-r--r--firmware/variant/Android.mk18
-rw-r--r--firmware/variant/argonkey/Android.mk39
-rw-r--r--firmware/variant/linux/Android.mk36
-rw-r--r--firmware/variant/lunchbox/Android.mk38
-rw-r--r--firmware/variant/nucleo/Android.mk38
5 files changed, 0 insertions, 169 deletions
diff --git a/firmware/variant/Android.mk b/firmware/variant/Android.mk
deleted file mode 100644
index 2321334a..00000000
--- a/firmware/variant/Android.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Copyright (C) 2016 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.
-#
-
-subdirs := nucleo lunchbox linux neonkey argonkey
-include $(call all-named-subdir-makefiles,$(subdirs))
diff --git a/firmware/variant/argonkey/Android.mk b/firmware/variant/argonkey/Android.mk
deleted file mode 100644
index 17f60af8..00000000
--- a/firmware/variant/argonkey/Android.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Copyright (C) 2016 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_NANO_VARS)
-
-LOCAL_MODULE := libnanohub_os_argonkey
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
-LOCAL_MODULE_TAGS := optional
-LOCAL_AUX_OS_VARIANT := argonkey
-
-LOCAL_SRC_FILES := \
- src/os/i2c.c \
- src/os/led.c \
- src/os/spi.c \
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/inc \
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := \
- $(LOCAL_C_INCLUDES)
-
-include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)
diff --git a/firmware/variant/linux/Android.mk b/firmware/variant/linux/Android.mk
deleted file mode 100644
index 79e1eeb9..00000000
--- a/firmware/variant/linux/Android.mk
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Copyright (C) 2016 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_NANO_VARS)
-
-LOCAL_MODULE := libnanohub_os_linux
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
-LOCAL_MODULE_TAGS := optional
-LOCAL_AUX_OS_VARIANT := linux
-
-LOCAL_SRC_FILES := \
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/inc \
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := \
- $(LOCAL_C_INCLUDES)
-
-include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)
diff --git a/firmware/variant/lunchbox/Android.mk b/firmware/variant/lunchbox/Android.mk
deleted file mode 100644
index f157e17f..00000000
--- a/firmware/variant/lunchbox/Android.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Copyright (C) 2016 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_NANO_VARS)
-
-LOCAL_MODULE := libnanohub_os_lunchbox
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
-LOCAL_MODULE_TAGS := optional
-LOCAL_AUX_OS_VARIANT := lunchbox
-
-LOCAL_SRC_FILES := \
- src/os/i2c.c \
- src/os/spi.c \
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/inc \
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := \
- $(LOCAL_C_INCLUDES)
-
-include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)
diff --git a/firmware/variant/nucleo/Android.mk b/firmware/variant/nucleo/Android.mk
deleted file mode 100644
index 043bed7e..00000000
--- a/firmware/variant/nucleo/Android.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Copyright (C) 2016 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_NANO_VARS)
-
-LOCAL_MODULE := libnanohub_os_nucleo
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../NOTICE
-LOCAL_MODULE_TAGS := optional
-LOCAL_AUX_OS_VARIANT := nucleo
-
-LOCAL_SRC_FILES := \
- src/os/i2c.c \
- src/os/spi.c \
-
-LOCAL_C_INCLUDES := \
- $(LOCAL_PATH)/inc \
-
-LOCAL_EXPORT_C_INCLUDE_DIRS := \
- $(LOCAL_C_INCLUDES)
-
-include $(BUILD_NANOHUB_OS_STATIC_LIBRARY)