2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:18 +04:00
|
|
|
# vim: set filetype=python:
|
2012-05-21 15:12:37 +04:00
|
|
|
# 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/.
|
2014-08-07 09:21:03 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
Library('icu')
|
2014-08-07 09:21:03 +04:00
|
|
|
|
2016-02-01 18:49:34 +03:00
|
|
|
if CONFIG['MOZ_SYSTEM_ICU']:
|
2014-08-07 09:21:03 +04:00
|
|
|
OS_LIBS += CONFIG['MOZ_ICU_LIBS']
|
|
|
|
else:
|
2016-04-05 17:09:12 +03:00
|
|
|
DIRS += [
|
|
|
|
'common',
|
|
|
|
'data',
|
|
|
|
'i18n',
|
|
|
|
]
|
|
|
|
if CONFIG['MOZ_ICU_DATA_ARCHIVE']:
|
|
|
|
DIRS += ['stubdata']
|
|
|
|
USE_LIBS += ['icustubdata']
|
|
|
|
else:
|
|
|
|
USE_LIBS += ['icudata']
|