components.conf (1282B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 XP_WIN = buildconfig.substs['OS_ARCH'] == 'WINNT' 8 XP_MACOSX = buildconfig.substs['MOZ_WIDGET_TOOLKIT'] == 'cocoa' 9 10 Classes = [ 11 { 12 'cid': '{6F8BB968-C14F-4D6F-9733-6C6737B35DCE}', 13 'contract_ids': ['@mozilla.org/toolkit/profile-migrator;1'], 14 'esModule': 'resource:///modules/ProfileMigrator.sys.mjs', 15 'constructor': 'ProfileMigrator', 16 }, 17 ] 18 19 if XP_WIN: 20 Classes += [ 21 { 22 'cid': '{c214cadc-2033-445e-8800-3fe25ee8d368}', 23 'contract_ids': ['@mozilla.org/profile/migrator/edgemigrationutils;1'], 24 'type': 'mozilla::nsEdgeMigrationUtils', 25 'headers': ['nsEdgeMigrationUtils.h'], 26 }, 27 ] 28 29 if XP_MACOSX: 30 Classes += [ 31 { 32 'cid': '{647bf80c-cd35-4ce6-b904-fd586b97ae48}', 33 'contract_ids': ['@mozilla.org/profile/migrator/keychainmigrationutils;1'], 34 'type': 'nsKeychainMigrationUtils', 35 'headers': ['nsKeychainMigrationUtils.h'], 36 }, 37 ]