Files
gst-egl/gstegl_src/gst-egl/chooseNvcfgProfile.mk
svcmobrel-release 86bef2643c Updating prebuilts and/or headers
741d28bb7d43c90cf4402f4ecc534e42a15de93d - gstegl_src/gst-egl/Makefile
f43858ce2d2f71d6de58ca59ff794fb026689a70 - gstegl_src/gst-egl/LICENSE.libgstnveglglessink
1a0c41a27bfc4e15f352ceaf07a5c88dfc1924bf - gstegl_src/gst-egl/gst-libs/gst/egl/egl.c
b8b167b1729c6e6d1341d9bc61689af8b1dd5064 - gstegl_src/gst-egl/gst-libs/gst/egl/egl.h
34174463c5aa7f9b7f84878cff2f38e41cce28ac - gstegl_src/gst-egl/gst-libs/gst/egl/LICENSE.libgstnvegl-1.0
9a83abc5044d31ea41387ac916231ec396665c34 - gstegl_src/gst-egl/pre-gen-source_64/config.h
a420f8c656140307d3d3c614228f609b59583c05 - gstegl_src/gst-egl/ext/eglgles/gstegljitter.c
a341ac6c564356940984817c53ad37a8af5ae471 - gstegl_src/gst-egl/ext/eglgles/gstegladaptation.h
702531a3023833fbf940b9d8ab568b7bda1d96a7 - gstegl_src/gst-egl/ext/eglgles/gstegladaptation_egl.c
ba144260ea5c0b76692d05b4b062c1656293fba3 - gstegl_src/gst-egl/ext/eglgles/gstegljitter.h
8149c234efce25ef230ab00a9d6ba141678575c9 - gstegl_src/gst-egl/ext/eglgles/video_platform_wrapper.h
948247d93a3b7bd800d3601ce6648cd508792054 - gstegl_src/gst-egl/ext/eglgles/gsteglglessink.h
80aab315fad96b237fea7b282e365b90e5185c7f - gstegl_src/gst-egl/ext/eglgles/gsteglglessink.c
d2f766addf49a14de24d217ca94c2698410b61c7 - gstegl_src/gst-egl/ext/eglgles/video_platform_wrapper.c
08e9b3d774d0a93abf96dd711ce8d1c412af6373 - gstegl_src/gst-egl/ext/eglgles/gstegladaptation.c

Change-Id: Id67a0cdf54ccf9fc00b2c47e42a1e91d6a5754ab
2022-08-15 08:53:42 -07:00

42 lines
1.6 KiB
Makefile

# Copyright (c) 2020, NVIDIA CORPORATION. All Rights Reserved.
#
# NVIDIA Corporation and its licensors retain all intellectual property and
# proprietary rights in and to this software and related documentation. Any
# use, reproduction, disclosure or distribution of this software and related
# documentation without an express license agreement from NVIDIA Corporation
# is strictly prohibited.
#
# Source for this file: $(TEGRA_TOP)/tmake/artifacts/CommonRulesNvMake.tmk
ifeq ($(NV_BUILD_CONFIGURATION_LINUX_USERSPACE_IS_EMBEDDED),1)
ifeq ($(NV_BUILD_CONFIGURATION_IS_EXTERNAL),0)
NVCFG_PROFILE=tegragpu_unix_arm_embedded_profile
else ifeq ($(NV_BUILD_CONFIGURATION_IS_GNEXT),1)
NVCFG_PROFILE=tegragpu_unix_arm_embedded_gnext_profile
else
NVCFG_PROFILE=tegragpu_unix_arm_embedded_external_profile
endif
else ifeq ($(NV_BUILD_CONFIGURATION_LINUX_USERSPACE_IS_L4T),1)
ifneq ($(NV_BUILD_CONFIGURATION_IS_EXTERNAL),0)
ifeq ($(NV_BUILD_CONFIGURATION_IS_GNEXT),1)
NVCFG_PROFILE=l4t_global_gnext_profile
else
NVCFG_PROFILE=l4t_global_external_profile
endif
else
NVCFG_PROFILE=tegragpu_unix_arm_global_profile
endif
else ifeq ($(NV_BUILD_CONFIGURATION_OS_IS_QNX),1)
ifeq ($(NV_BUILD_CONFIGURATION_IS_EXTERNAL),0)
NVCFG_PROFILE=tegragpu_unix_arm_embedded_profile
else ifeq ($(NV_BUILD_CONFIGURATION_IS_GNEXT),1)
NVCFG_PROFILE=tegragpu_unix_arm_embedded_gnext_profile
else ifeq ($(NV_BUILD_CONFIGURATION_IS_SAFETY),1)
NVCFG_PROFILE=tegra_with_dgpu_embedded_safety_external_profile
else
NVCFG_PROFILE=tegragpu_unix_arm_embedded_external_profile
endif
else
$(error Unsupported OS)
endif