-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyunos-all.mk
executable file
·67 lines (56 loc) · 2.41 KB
/
yunos-all.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#############################################################################
# Copyright (C) 2015-2017 Alibaba Group Holding Limited. All Rights Reserved.
#
# 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.
#############################################################################
# include $(call all-subdir-makefiles)
MY_MM_CURRENT_DIR:=$(call my-dir)
## base
include ${MY_MM_CURRENT_DIR}/base/yunos.mk
include ${MY_MM_CURRENT_DIR}/cow/yunos.mk
## module 1
include ${MY_MM_CURRENT_DIR}/ext/yunos.mk
include ${MY_MM_CURRENT_DIR}/mediasurfacetexture/yunos.mk
include ${MY_MM_CURRENT_DIR}/mediaplayer/yunos.mk
include ${MY_MM_CURRENT_DIR}/mediarecorder/yunos.mk
include ${MY_MM_CURRENT_DIR}/wifidisplay/yunos.mk
include ${MY_MM_CURRENT_DIR}/mediaserver/yunos.mk
include ${MY_MM_CURRENT_DIR}/audio/yunos.mk
## module 2
include ${MY_MM_CURRENT_DIR}/pbchannel/yunos.mk
include ${MY_MM_CURRENT_DIR}/mediakeeper/yunos.mk
include ${MY_MM_CURRENT_DIR}/instantaudio/yunos.mk
include ${MY_MM_CURRENT_DIR}/syssound/yunos.mk
include ${MY_MM_CURRENT_DIR}/image/yunos.mk
include ${MY_MM_CURRENT_DIR}/webrtc/yunos.mk
## platform specific components
ifeq ($(XMAKE_PLATFORM),ivi)
include ${MY_MM_CURRENT_DIR}/cow/src/platform/ivi/yunos.mk
endif
## misc
include ${MY_MM_CURRENT_DIR}/drm/yunos.mk
include ${MY_MM_CURRENT_DIR}/mcv4l2/yunos.mk
# include ${MY_MM_CURRENT_DIR}/v4l2deviceservice/yunos.mk
include ${MY_MM_CURRENT_DIR}/transcoding/yunos.mk
include ${MY_MM_CURRENT_DIR}/vrvideoview/yunos.mk
## mdk
include ${MY_MM_CURRENT_DIR}/examples/yunos.mk
# include ${MY_MM_CURRENT_DIR}/examples/comps/yunos.mk ## usually, there is no libOpenCL yet
include ${MY_MM_CURRENT_DIR}/mdk/yunos.mk
## test
include ${MY_MM_CURRENT_DIR}/test/yunos.mk # webrtc is default on for pad only
ifneq ($(XMAKE_PLATFORM),tablet) # add webrtc test manually for test
ifneq ($(XMAKE_PLATFORM),ivi) # do not add webrtc test for ivi
include ${MY_MM_CURRENT_DIR}/test/webrtc/y.mk
endif
endif