bug 870407: move CMMSRCS to moz.build (file batch #1). r=mshal

This commit is contained in:
Joey Armstrong 2013-06-07 11:43:39 -04:00
Родитель 51df5a5875
Коммит cc66e06834
16 изменённых файлов: 43 добавлений и 10 удалений

Просмотреть файл

@ -15,7 +15,7 @@ FORCE_STATIC_LIB = 1
LIBXUL_LIBRARY = 1
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
CMMSRCS += nsUserInfoMac.mm
DISABLE_CMMSRCS += nsUserInfoMac.mm
endif
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -30,8 +30,9 @@ elif CONFIG['OS_ARCH'] == 'WINNT':
'nsUserInfoWin.cpp',
]
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
# TODO: CMMSRCS go here
pass
CMMSRCS += [
'nsUserInfoMac.mm',
]
else:
CPP_SOURCES += [
'nsUserInfoUnix.cpp',

Просмотреть файл

@ -14,7 +14,7 @@ LIBRARY_NAME = exception_handler_s
MSVC_ENABLE_PGO := 1
ifeq ($(OS_ARCH),Darwin)
CMMSRCS = mac_utils.mm
DISABLED_CMMSRCS = mac_utils.mm
endif
ifeq ($(OS_ARCH),Linux)

Просмотреть файл

@ -39,7 +39,7 @@ MOZ_WINCONSOLE = 0
endif
ifeq ($(OS_ARCH),Darwin)
CMMSRCS += crashreporter_osx.mm
DISABLED_CMMSRCS += crashreporter_osx.mm
OS_LIBS += -framework Cocoa
LIBS += \
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \

Просмотреть файл

@ -43,3 +43,8 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk2':
CPP_SOURCES += [
'crashreporter_linux.cpp',
]
if CONFIG['OS_ARCH'] == 'Darwin':
CMMSRCS += [
'crashreporter_osx.mm',
]

Просмотреть файл

@ -39,7 +39,7 @@ endif
endif
ifeq ($(OS_ARCH),Darwin)
CMMSRCS += \
DISABLED_CMMSRCS += \
mac/dump_syms.mm
endif

Просмотреть файл

@ -21,7 +21,7 @@ CMSRCS = \
HTTPMultipartUpload.m \
$(NULL)
CMMSRCS = \
DISABLED_CMMSRCS = \
MachIPC.mm \
$(NULL)

Просмотреть файл

@ -17,3 +17,6 @@ CPP_SOURCES += [
'string_utilities.cc',
]
CMMSRCS += [
'MachIPC.mm',
]

Просмотреть файл

@ -47,3 +47,8 @@ else:
'stabs_to_module.cc',
'stabs_reader.cc',
]
if CONFIG['OS_ARCH'] == 'Darwin':
CMMSRCS += [
'mac/dump_syms.mm',
]

Просмотреть файл

@ -67,3 +67,8 @@ CPP_SOURCES += [
'nsExceptionHandler.cpp',
]
if CONFIG['OS_ARCH'] == 'Darwin':
CMMSRCS += [
'mac_utils.mm',
]

Просмотреть файл

@ -44,7 +44,7 @@ OS_LIBS += $(TK_LIBS)
endif
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
CMMSRCS += progressui_osx.mm launchchild_osx.mm
DISABLED_CMMSRCS += progressui_osx.mm launchchild_osx.mm
OS_LIBS += -framework Cocoa
endif

Просмотреть файл

@ -40,3 +40,9 @@ if have_progressui == 0:
CPP_SOURCES += [
'progressui_null.cpp',
]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
CMMSRCS += [
'launchchild_osx.mm',
'progressui_osx.mm',
]

Просмотреть файл

@ -16,7 +16,7 @@ IS_COMPONENT = 1
MODULE_NAME = nsOSXProxyModule
LIBXUL_LIBRARY = 1
CMMSRCS = \
DISABLED_CMMSRCS = \
nsOSXSystemProxySettings.mm \
$(NULL)

Просмотреть файл

@ -6,3 +6,6 @@
MODULE = 'osxproxy'
CMMSRCS += [
'nsOSXSystemProxySettings.mm',
]

Просмотреть файл

@ -23,7 +23,7 @@ endif
endif
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
CMMSRCS += \
DISABLED_CMMSRCS += \
CocoaFileUtils.mm \
$(NULL)
endif

Просмотреть файл

@ -115,3 +115,8 @@ CPP_SOURCES += [
'nsWildCard.cpp',
]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
CMMSRCS += [
'CocoaFileUtils.mm',
]