author | Birunthan Mohanathas <birunthan@mohanathas.com> |
Thu, 24 Jul 2014 10:56:38 -0700 | |
changeset 196037 | 0732215ac8e87d4f4837a16373ce850766632469 |
parent 196036 | b79894a533bcd2c5b742f55e0de9eff40d8b86c3 |
child 196038 | 345f6e3e6972e786242960703ad5b6cdc4348602 |
push id | 27205 |
push user | kwierso@gmail.com |
push date | Fri, 25 Jul 2014 22:59:38 +0000 |
treeherder | mozilla-central@e07264876182 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | smontagu |
bugs | 1038537 |
milestone | 34.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
deleted file mode 100644 --- a/intl/locale/idl/moz.build +++ /dev/null @@ -1,15 +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/. - -XPIDL_SOURCES += [ - 'nsICollation.idl', - 'nsILocale.idl', - 'nsILocaleService.idl', - 'nsIScriptableDateFormat.idl', -] - -XPIDL_MODULE = 'locale' -
--- a/intl/locale/moz.build +++ b/intl/locale/moz.build @@ -1,28 +1,43 @@ # -*- 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/. -DIRS += ['public', 'idl'] TEST_DIRS += ['tests'] toolkit = CONFIG['MOZ_WIDGET_TOOLKIT'] if toolkit == 'windows': DIRS += ['windows'] elif toolkit == 'cocoa': DIRS += ['mac'] else: DIRS += ['unix'] +XPIDL_SOURCES += [ + 'nsICollation.idl', + 'nsILocale.idl', + 'nsILocaleService.idl', + 'nsIScriptableDateFormat.idl', +] + +XPIDL_MODULE = 'locale' + EXPORTS += [ 'nsCollation.h', + 'nsCollationCID.h', + 'nsDateTimeFormatCID.h', + 'nsIDateTimeFormat.h', + 'nsILanguageAtomService.h', + 'nsIPlatformCharset.h', + 'nsPosixLocale.h', + 'nsWin32Locale.h', ] UNIFIED_SOURCES += [ 'nsCollation.cpp', 'nsLanguageAtomService.cpp', 'nsLocale.cpp', 'nsLocaleService.cpp', 'nsScriptableDateFormat.cpp',
rename from intl/locale/public/nsILanguageAtomService.h rename to intl/locale/nsILanguageAtomService.h
rename from intl/locale/idl/nsIScriptableDateFormat.idl rename to intl/locale/nsIScriptableDateFormat.idl
deleted file mode 100644 --- a/intl/locale/public/moz.build +++ /dev/null @@ -1,16 +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 += [ - 'nsCollationCID.h', - 'nsDateTimeFormatCID.h', - 'nsIDateTimeFormat.h', - 'nsILanguageAtomService.h', - 'nsIPlatformCharset.h', - 'nsPosixLocale.h', - 'nsWin32Locale.h', -] -