Bug 1251780 - Remove unicharutil_standalone library. r=rbarker

This commit is contained in:
Eric Rahm 2016-03-03 12:16:41 -08:00
Родитель 6f476c6953
Коммит c3a2dbf3de
2 изменённых файлов: 1 добавлений и 25 удалений

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

@ -8,7 +8,7 @@
# by frozen (dependent) linkage components. Internal-linkage code should use
# unicharutil_s which is built in the internal/ subdirectory.
DIRS += ['internal', 'standalone']
DIRS += ['internal']
EXPORTS += [
'GreekCasing.h',

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

@ -1,24 +0,0 @@
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# 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/.
if CONFIG['OS_TARGET'] != 'WINNT' and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
Library('unicharutil_standalone')
UNIFIED_SOURCES += [
'../nsUnicodeProperties.cpp',
]
if CONFIG['ENABLE_INTL_API']:
CXXFLAGS += CONFIG['MOZ_ICU_CFLAGS']
LOCAL_INCLUDES += CONFIG['MOZ_ICU_INCLUDES']
USE_LIBS += ['icu']
for var in ('MOZILLA_INTERNAL_API', 'MOZILLA_XPCOMRT_API', 'MOZILLA_EXTERNAL_LINKAGE',
'NR_SOCKET_IS_VOID_PTR', 'HAVE_STRDUP'):
DEFINES[var] = True
if CONFIG['GNU_CXX']:
CXXFLAGS += ['-Wshadow']