forked from openkylin/platform_build
Add top level product definitions for module_* devices.
Test: lunch module_{arm,arm64,x86,x86_64} Inspect target arches in the banner Bug: 176171716 Change-Id: Iba7818cfc1385d3f84dce1ef95c2bb8d279926bb
This commit is contained in:
parent
c25182c757
commit
29c5d1a4f1
|
@ -72,7 +72,12 @@ PRODUCT_MAKEFILES := \
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PRODUCT_MAKEFILES += $(LOCAL_DIR)/mainline_sdk.mk
|
PRODUCT_MAKEFILES += \
|
||||||
|
$(LOCAL_DIR)/mainline_sdk.mk \
|
||||||
|
$(LOCAL_DIR)/module_arm.mk \
|
||||||
|
$(LOCAL_DIR)/module_arm64.mk \
|
||||||
|
$(LOCAL_DIR)/module_x86.mk \
|
||||||
|
$(LOCAL_DIR)/module_x86_64.mk \
|
||||||
|
|
||||||
COMMON_LUNCH_CHOICES := \
|
COMMON_LUNCH_CHOICES := \
|
||||||
aosp_arm64-eng \
|
aosp_arm64-eng \
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/board/module_arm/device.mk)
|
||||||
|
|
||||||
|
PRODUCT_NAME := module_arm
|
||||||
|
PRODUCT_BRAND := Android
|
||||||
|
PRODUCT_DEVICE := module_arm
|
|
@ -0,0 +1,21 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/board/module_arm64/device.mk)
|
||||||
|
|
||||||
|
PRODUCT_NAME := module_arm64
|
||||||
|
PRODUCT_BRAND := Android
|
||||||
|
PRODUCT_DEVICE := module_arm64
|
|
@ -0,0 +1,21 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/board/module_x86/device.mk)
|
||||||
|
|
||||||
|
PRODUCT_NAME := module_x86
|
||||||
|
PRODUCT_BRAND := Android
|
||||||
|
PRODUCT_DEVICE := module_x86
|
|
@ -0,0 +1,21 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/board/module_x86_64/device.mk)
|
||||||
|
|
||||||
|
PRODUCT_NAME := module_x86_64
|
||||||
|
PRODUCT_BRAND := Android
|
||||||
|
PRODUCT_DEVICE := module_x86_64
|
Loading…
Reference in New Issue