gecko/ipc/chromium/Makefile.in

300 lines
6.7 KiB
Makefile

# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is the Mozilla platform.
#
# The Initial Developer of the Original Code is
# the Mozilla Foundation <http://www.mozilla.org/>.
# Portions created by the Initial Developer are Copyright (C) 2009
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
OS_CXXFLAGS := $(filter-out -fshort-wchar,$(OS_CXXFLAGS))
LIBRARY_NAME = chromium_s
FORCE_STATIC_LIB = 1
LIBXUL_LIBRARY = 1
EXPORT_LIBRARY = 1
ENABLE_CXX_EXCEPTIONS = 1
ACDEFINES =
vpath %.c \
$(srcdir)/src/third_party/libevent \
$(NULL)
vpath %.cc \
$(srcdir)/src/base \
$(srcdir)/src/base/third_party/dmg_fp \
$(srcdir)/src/base/third_party/nspr \
$(srcdir)/src/base/third_party/nss \
$(srcdir)/src/chrome/common \
$(NULL)
vpath %.mm \
$(srcdir)/src/base \
$(srcdir)/src/chrome/common \
$(NULL)
# TODO: remove this hack when we switch to GCC 4.3! GCC 4.1
# instantiates template declarations in wrapped system headers with
# the wrong visibility, which is causing the Linux tinderboxen to die in
# std::string internals.
VISIBILITY_FLAGS=
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/ipc/chromium/chromium-config.mk
CPPSRCS += \
dtoa.cc \
g_fmt.cc \
prtime.cc \
at_exit.cc \
base_paths.cc \
base_switches.cc \
command_line.cc \
debug_util.cc \
file_path.cc \
file_util.cc \
histogram.cc \
lazy_instance.cc \
lock.cc \
logging.cc \
memory_debug.cc \
message_loop.cc \
message_pump_default.cc \
non_thread_safe.cc \
path_service.cc \
pickle.cc \
rand_util.cc \
ref_counted.cc \
revocable_store.cc \
scoped_temp_dir.cc \
sha2.cc \
simple_thread.cc \
stats_table.cc \
string_escape.cc \
string_piece.cc \
string_util.cc \
system_monitor.cc \
thread.cc \
thread_collision_warner.cc \
time.cc \
timer.cc \
trace_event.cc \
tracked.cc \
tracked_objects.cc \
child_process.cc \
child_process_host.cc \
child_process_info.cc \
child_thread.cc \
chrome_counters.cc \
chrome_paths.cc \
chrome_switches.cc \
debug_flags.cc \
env_vars.cc \
ipc_channel_proxy.cc \
ipc_logging.cc \
ipc_message.cc \
ipc_message_utils.cc \
ipc_sync_channel.cc \
ipc_sync_message.cc \
message_router.cc \
notification_service.cc \
task_queue.cc \
$(NULL)
ifdef OS_WIN # {
CPPSRCS += \
base_paths_win.cc \
cpu.cc \
condition_variable_win.cc \
debug_on_start.cc \
debug_util_win.cc \
event_recorder.cc \
file_util_win.cc \
file_version_info.cc \
lock_impl_win.cc \
idle_timer.cc \
message_pump_win.cc \
object_watcher.cc \
platform_file_win.cc \
platform_thread_win.cc \
process_util_win.cc \
process_win.cc \
rand_util_win.cc \
registry.cc \
shared_memory_win.cc \
sys_info_win.cc \
sys_string_conversions_win.cc \
system_monitor_win.cc \
thread_local_storage_win.cc \
thread_local_win.cc \
time_win.cc \
waitable_event_watcher_win.cc \
waitable_event_win.cc \
win_util.cc \
chrome_paths_win.cc \
ipc_channel_win.cc \
process_watcher_win.cc \
transport_dib_win.cc \
$(NULL)
endif # } OS_WIN
ifdef OS_POSIX # {
CPPSRCS += \
sha512.cc \
condition_variable_posix.cc \
debug_util_posix.cc \
event_recorder_stubs.cc \
file_descriptor_shuffle.cc \
file_util_posix.cc \
lock_impl_posix.cc \
message_pump_libevent.cc \
platform_file_posix.cc \
platform_thread_posix.cc \
process_posix.cc \
process_util_posix.cc \
rand_util_posix.cc \
shared_memory_posix.cc \
string16.cc \
system_monitor_posix.cc \
sys_info_posix.cc \
thread_local_posix.cc \
thread_local_storage_posix.cc \
waitable_event_posix.cc \
waitable_event_watcher_posix.cc \
file_descriptor_set_posix.cc \
ipc_channel_posix.cc \
process_watcher_posix.cc \
$(NULL)
endif # } OS_POSIX
ifdef OS_MACOSX # {
CMMSRCS += \
base_paths_mac.mm \
file_util_mac.mm \
file_version_info_mac.mm \
mac_util.mm \
message_pump_mac.mm \
platform_thread_mac.mm \
process_util_mac.mm \
scoped_nsautorelease_pool.mm \
sys_string_conversions_mac.mm \
worker_pool_mac.mm \
chrome_paths_mac.mm \
mach_ipc_mac.mm \
platform_util_mac.mm \
$(NULL)
CPPSRCS += \
data_pack.cc \
debug_util_mac.cc \
hmac_mac.cc \
idle_timer.cc \
sys_info_mac.cc \
time_mac.cc \
mach_message_source_mac.cc \
transport_dib_mac.cc \
$(NULL)
endif # } OS_MACOSX
ifdef OS_LINUX # {
CPPSRCS += \
atomicops_internals_x86_gcc.cc \
base_paths_linux.cc \
data_pack.cc \
file_util_linux.cc \
file_version_info_linux.cc \
idle_timer_none.cc \
message_pump_glib.cc \
process_util_linux.cc \
time_posix.cc \
chrome_paths_linux.cc \
owned_widget_gtk.cc \
platform_util_linux.cc \
transport_dib_linux.cc \
x11_util.cc \
$(NULL)
endif # } OS_LINUX
# libevent
ifdef OS_POSIX # {
LOCAL_INCLUDES += -I$(srcdir)/src/third_party/libevent
DEFINES += -DHAVE_CONFIG_H
CSRCS += \
buffer.c \
evbuffer.c \
evdns.c \
event.c \
event_tagging.c \
evrpc.c \
evutil.c \
http.c \
log.c \
poll.c \
select.c \
signal.c \
strlcpy.c \
$(NULL)
ifdef OS_MACOSX # {
LOCAL_INCLUDES += -I$(srcdir)/src/third_party/libevent/mac
CSRCS += kqueue.c
endif # }
ifdef OS_LINUX # {
LOCAL_INCLUDES += -I$(srcdir)/src/third_party/libevent/linux
CSRCS += \
epoll.c \
epoll_sub.c \
$(NULL)
endif # }
endif # }
include $(topsrcdir)/config/rules.mk