blob: eb620bb3b4ca038d71366eb1ba662d080a2b0a39 [file] [log] [blame]
niklase@google.comda159d62011-05-30 11:51:34 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
leozwang@google.com79835d12011-08-05 21:01:02 +00009# These defines will apply to all source files
10# Think again before changing it
11MY_WEBRTC_COMMON_DEFS := \
12 '-DWEBRTC_TARGET_PC' \
13 '-DWEBRTC_LINUX' \
14 '-DWEBRTC_THREAD_RR' \
15 '-DWEBRTC_CLOCK_TYPE_REALTIME' \
16 '-DWEBRTC_ANDROID'
17# The following macros are used by modules,
18# we might need to re-organize them
19# '-DWEBRTC_ANDROID_OPENSLES' [module audio_device]
20# '-DNETEQ_VOICEENGINE_CODECS' [module audio_coding neteq]
21# '-DWEBRTC_MODULE_UTILITY_VIDEO' [module media_file] [module utility]
22ifeq ($(TARGET_ARCH),arm)
23MY_WEBRTC_COMMON_DEFS += \
leozwang@google.com79835d12011-08-05 21:01:02 +000024 '-DWEBRTC_ARCH_ARM'
kma@webrtc.orgb59c0312011-12-03 18:34:50 +000025# '-DWEBRTC_DETECT_ARM_NEON' # only used in a build configuration without Neon
26# TODO(kma): figure out if the above define could be moved to NDK build only.
kma@google.com88110322011-08-08 15:40:10 +000027
28# TODO(kma): test if the code under next two macros works with generic GCC compilers
leozwang@google.com79835d12011-08-05 21:01:02 +000029ifeq ($(ARCH_ARM_HAVE_NEON),true)
30MY_WEBRTC_COMMON_DEFS += \
kma@google.com88110322011-08-08 15:40:10 +000031 '-DWEBRTC_ARCH_ARM_NEON'
leozwang@google.com95222072011-08-15 17:40:56 +000032MY_ARM_CFLAGS_NEON := \
33 -flax-vector-conversions
kma@google.com88110322011-08-08 15:40:10 +000034endif
35
36ifeq ($(ARCH_ARM_HAVE_ARMV7A),true)
leozwang@google.com79835d12011-08-05 21:01:02 +000037MY_WEBRTC_COMMON_DEFS += \
kma@google.com88110322011-08-08 15:40:10 +000038 '-DWEBRTC_ARCH_ARM_V7A'
leozwang@google.coma39ffa92011-07-25 21:28:22 +000039endif
kma@google.com579ee4d2011-08-09 04:30:06 +000040
leozwang@google.com79835d12011-08-05 21:01:02 +000041else ifeq ($(TARGET_ARCH),x86)
42MY_WEBRTC_COMMON_DEFS += \
43 '-DWEBRTC_USE_SSE2'
leozwang@google.coma39ffa92011-07-25 21:28:22 +000044endif