mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../base/src \
|
|
-I$(srcdir)/../dns \
|
|
-I$(srcdir)/../socket \
|
|
-I$(srcdir)/../streamconv/src \
|
|
-I$(srcdir)/../streamconv/converters \
|
|
-I$(srcdir)/../mime \
|
|
-I$(srcdir)/../cache \
|
|
-I$(srcdir)/../protocol/about \
|
|
-I$(srcdir)/../protocol/app \
|
|
-I../dns \
|
|
$(foreach d,$(filter-out about,$(NECKO_PROTOCOLS)), \
|
|
-I$(srcdir)/../protocol/$(d)) \
|
|
$(NULL)
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
LOCAL_INCLUDES += -I$(srcdir)/../system/win32
|
|
endif
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
LOCAL_INCLUDES += -I$(srcdir)/../system/mac
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_QTNETWORK
|
|
LOCAL_INCLUDES += -I$(srcdir)/../system/qt
|
|
endif
|
|
|
|
ifeq (android,$(MOZ_WIDGET_TOOLKIT))
|
|
LOCAL_INCLUDES += -I$(srcdir)/../system/android
|
|
endif
|
|
|
|
ifdef NECKO_COOKIES
|
|
LOCAL_INCLUDES += -I$(srcdir)/../cookie
|
|
endif
|
|
|
|
ifdef NECKO_WIFI
|
|
LOCAL_INCLUDES += -I$(srcdir)/../wifi
|
|
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|