2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-02 17:55:30 -07:00
|
|
|
# Solaris sh blows
|
2007-03-22 10:30:00 -07:00
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
SHELL := ksh
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2013-03-13 13:10:47 -07:00
|
|
|
ifdef MOZ_GSTREAMER
|
2013-11-28 06:23:10 -08:00
|
|
|
CXXFLAGS += $(GSTREAMER_CFLAGS)
|
2013-03-13 13:10:47 -07:00
|
|
|
endif
|
|
|
|
|
2013-10-29 01:12:45 -07:00
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
2013-11-28 06:23:10 -08:00
|
|
|
CXXFLAGS += \
|
|
|
|
-I$(ANDROID_SOURCE)/dalvik/libnativehelper/include/nativehelper \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/ \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/binder/ \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/utils/ \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/ \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/stagefright/openmax \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/media/libstagefright/include \
|
|
|
|
$(NULL)
|
|
|
|
endif
|