Bug 901561 - Move CMSRCS to moz.build. r=gps

This commit is contained in:
Mike Hommey 2013-10-30 07:51:27 +09:00
parent 45f0482824
commit 71cbbf51cb
5 changed files with 7 additions and 7 deletions

View File

@ -36,6 +36,7 @@ endif
_MOZBUILD_EXTERNAL_VARIABLES := \
ANDROID_GENERATED_RESFILES \
ANDROID_RESFILES \
CMSRCS \
CMMSRCS \
CPP_UNIT_TESTS \
DIRS \

View File

@ -36,6 +36,7 @@ endif
_MOZBUILD_EXTERNAL_VARIABLES := \
ANDROID_GENERATED_RESFILES \
ANDROID_RESFILES \
CMSRCS \
CMMSRCS \
CPP_UNIT_TESTS \
DIRS \

View File

@ -179,6 +179,7 @@ class TreeMetadataEmitter(LoggingMixin):
'.s': 'ASFILES',
'.asm': 'ASFILES',
'.c': 'CSRCS',
'.m': 'CMSRCS',
'.mm': 'CMMSRCS',
'.cc': 'CPPSRCS',
'.cpp': 'CPPSRCS',

View File

@ -4,13 +4,6 @@
LOCAL_INCLUDES = -I$(srcdir)/../..
# This is a little weird, but we're building a host and a target lib here.
# The host lib is used for dump_syms, and the target lib for the
# crash reporter client. Therefore, we don't need all the srcs in both.
CMSRCS = \
HTTPMultipartUpload.m \
$(NULL)
HOST_CMMSRCS = \
dump_syms.mm \
$(NULL)

View File

@ -17,10 +17,14 @@ SOURCES += [
'string_utilities.cc',
]
# This is a little weird, but we're building a host and a target lib here.
# The host lib is used for dump_syms, and the target lib for the
# crash reporter client. Therefore, we don't need all the srcs in both.
HOST_SOURCES += SOURCES
HOST_LIBRARY_NAME = 'host_breakpad_mac_common_s'
SOURCES += [
'HTTPMultipartUpload.m',
'MachIPC.mm',
]