mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1038537 - Part 2: Flatten intl/hyphenation/{public,src}/ directories. r=smontagu
--HG-- rename : intl/hyphenation/src/COPYING => intl/hyphenation/COPYING rename : intl/hyphenation/src/COPYING.LGPL => intl/hyphenation/COPYING.LGPL rename : intl/hyphenation/src/COPYING.MPL => intl/hyphenation/COPYING.MPL rename : intl/hyphenation/src/README => intl/hyphenation/README rename : intl/hyphenation/src/README.compound => intl/hyphenation/README.compound rename : intl/hyphenation/src/README.hyphen => intl/hyphenation/README.hyphen rename : intl/hyphenation/src/README.mozilla => intl/hyphenation/README.mozilla rename : intl/hyphenation/src/README.nonstandard => intl/hyphenation/README.nonstandard rename : intl/hyphenation/src/hnjalloc.h => intl/hyphenation/hnjalloc.h rename : intl/hyphenation/src/hnjstdio.cpp => intl/hyphenation/hnjstdio.cpp rename : intl/hyphenation/src/hyphen.c => intl/hyphenation/hyphen.c rename : intl/hyphenation/src/hyphen.h => intl/hyphenation/hyphen.h rename : intl/hyphenation/src/nsHyphenationManager.cpp => intl/hyphenation/nsHyphenationManager.cpp rename : intl/hyphenation/public/nsHyphenationManager.h => intl/hyphenation/nsHyphenationManager.h rename : intl/hyphenation/src/nsHyphenator.cpp => intl/hyphenation/nsHyphenator.cpp rename : intl/hyphenation/public/nsHyphenator.h => intl/hyphenation/nsHyphenator.h
This commit is contained in:
parent
f4fc1fe1fc
commit
ce65db7e82
@ -4,5 +4,29 @@
|
||||
# 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/.
|
||||
|
||||
DIRS += ['public', 'src']
|
||||
EXPORTS += [
|
||||
'nsHyphenationManager.h',
|
||||
'nsHyphenator.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'nsHyphenationManager.cpp',
|
||||
'nsHyphenator.cpp',
|
||||
]
|
||||
|
||||
# These files cannot be built in unified mode because they include hnjalloc.h.
|
||||
SOURCES += [
|
||||
'hnjstdio.cpp',
|
||||
'hyphen.c',
|
||||
]
|
||||
|
||||
MSVC_ENABLE_PGO = True
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
# Suppress warnings in third-party code.
|
||||
if CONFIG['GNU_CC']:
|
||||
CFLAGS += [
|
||||
'-Wno-sign-compare',
|
||||
'-Wno-type-limits',
|
||||
]
|
||||
|
@ -1,11 +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/.
|
||||
|
||||
EXPORTS += [
|
||||
'nsHyphenationManager.h',
|
||||
'nsHyphenator.h',
|
||||
]
|
||||
|
@ -1,27 +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/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'nsHyphenationManager.cpp',
|
||||
'nsHyphenator.cpp',
|
||||
]
|
||||
|
||||
# These files cannot be built in unified mode because they include hnjalloc.h.
|
||||
SOURCES += [
|
||||
'hnjstdio.cpp',
|
||||
'hyphen.c',
|
||||
]
|
||||
|
||||
MSVC_ENABLE_PGO = True
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
# Suppress warnings in third-party code.
|
||||
if CONFIG['GNU_CC']:
|
||||
CFLAGS += [
|
||||
'-Wno-sign-compare',
|
||||
'-Wno-type-limits',
|
||||
]
|
Loading…
Reference in New Issue
Block a user