Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | #if MOZ_APP_STATIC_INI |
michael@0 | 2 | #ifdef MOZ_BUILD_APP_IS_BROWSER |
michael@0 | 3 | ; This file is not used. If you modify it and want the application to use |
michael@0 | 4 | ; your modifications, move it under the browser/ subdirectory and start with |
michael@0 | 5 | ; the "-app /path/to/browser/application.ini" argument. |
michael@0 | 6 | #else |
michael@0 | 7 | ; This file is not used. If you modify it and want the application to use |
michael@0 | 8 | ; your modifications, start with the "-app /path/to/application.ini" |
michael@0 | 9 | ; argument. |
michael@0 | 10 | #endif |
michael@0 | 11 | #endif |
michael@0 | 12 | #if 0 |
michael@0 | 13 | ; This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 14 | ; License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 15 | ; file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 16 | #endif |
michael@0 | 17 | #filter substitution |
michael@0 | 18 | [App] |
michael@0 | 19 | Vendor=@MOZ_APP_VENDOR@ |
michael@0 | 20 | Name=@MOZ_APP_BASENAME@ |
michael@0 | 21 | #ifdef MOZ_APP_DISPLAYNAME |
michael@0 | 22 | CodeName=@MOZ_APP_DISPLAYNAME@ |
michael@0 | 23 | #endif |
michael@0 | 24 | Version=@MOZ_APP_VERSION@ |
michael@0 | 25 | #ifdef MOZ_APP_PROFILE |
michael@0 | 26 | Profile=@MOZ_APP_PROFILE@ |
michael@0 | 27 | #endif |
michael@0 | 28 | BuildID=@APP_BUILDID@ |
michael@0 | 29 | #ifdef MOZ_SOURCE_REPO |
michael@0 | 30 | SourceRepository=@MOZ_SOURCE_REPO@ |
michael@0 | 31 | #endif |
michael@0 | 32 | #ifdef MOZ_SOURCE_STAMP |
michael@0 | 33 | SourceStamp=@MOZ_SOURCE_STAMP@ |
michael@0 | 34 | #endif |
michael@0 | 35 | ID=@MOZ_APP_ID@ |
michael@0 | 36 | |
michael@0 | 37 | [Gecko] |
michael@0 | 38 | MinVersion=@GRE_MILESTONE@ |
michael@0 | 39 | MaxVersion=@GRE_MILESTONE@ |
michael@0 | 40 | |
michael@0 | 41 | [XRE] |
michael@0 | 42 | #ifdef MOZ_PROFILE_MIGRATOR |
michael@0 | 43 | EnableProfileMigrator=1 |
michael@0 | 44 | #endif |
michael@0 | 45 | #ifdef MOZ_EXTENSION_MANAGER |
michael@0 | 46 | EnableExtensionManager=1 |
michael@0 | 47 | #endif |
michael@0 | 48 | |
michael@0 | 49 | #if MOZ_CRASHREPORTER |
michael@0 | 50 | [Crash Reporter] |
michael@0 | 51 | Enabled=1 |
michael@0 | 52 | ServerURL=https://crash-reports.mozilla.com/submit?id=@MOZ_APP_ID@&version=@MOZ_APP_VERSION@&buildid=@APP_BUILDID@ |
michael@0 | 53 | #endif |