Issue #889 - Clean up the Pale Moon tree - Part 1d: Move sync to components

This commit is contained in:
NTD 2018-11-30 12:06:57 -05:00 • committed by Roy Tam
commit 00c0692c36
21 changed files with 33 additions and 19 deletions

View file

@ -46,25 +46,6 @@ browser.jar:
content/browser/padlock_classic_low.png (content/padlock_classic_low.png) content/browser/padlock_classic_low.png (content/padlock_classic_low.png)
content/browser/padlock_classic_broken.png (content/padlock_classic_broken.png) content/browser/padlock_classic_broken.png (content/padlock_classic_broken.png)
content/browser/palemoon.xhtml (content/palemoon.xhtml) content/browser/palemoon.xhtml (content/palemoon.xhtml)
#ifdef MOZ_SERVICES_SYNC
content/browser/sync/aboutSyncTabs.xul (content/sync/aboutSyncTabs.xul)
content/browser/sync/aboutSyncTabs.js (content/sync/aboutSyncTabs.js)
content/browser/sync/aboutSyncTabs.css (content/sync/aboutSyncTabs.css)
content/browser/sync/aboutSyncTabs-bindings.xml (content/sync/aboutSyncTabs-bindings.xml)
content/browser/sync/setup.xul (content/sync/setup.xul)
content/browser/sync/addDevice.js (content/sync/addDevice.js)
content/browser/sync/addDevice.xul (content/sync/addDevice.xul)
content/browser/sync/setup.js (content/sync/setup.js)
content/browser/sync/genericChange.xul (content/sync/genericChange.xul)
content/browser/sync/genericChange.js (content/sync/genericChange.js)
content/browser/sync/key.xhtml (content/sync/key.xhtml)
content/browser/sync/notification.xml (content/sync/notification.xml)
content/browser/sync/quota.xul (content/sync/quota.xul)
content/browser/sync/quota.js (content/sync/quota.js)
content/browser/sync/utils.js (content/sync/utils.js)
content/browser/sync/progress.js (content/sync/progress.js)
content/browser/sync/progress.xhtml (content/sync/progress.xhtml)
#endif
content/browser/openLocation.js (content/openLocation.js) content/browser/openLocation.js (content/openLocation.js)
content/browser/openLocation.xul (content/openLocation.xul) content/browser/openLocation.xul (content/openLocation.xul)
content/browser/safeMode.css (content/safeMode.css) content/browser/safeMode.css (content/safeMode.css)

View file

@ -25,6 +25,9 @@ DIRS += [
if CONFIG['MOZ_BROWSER_STATUSBAR']: if CONFIG['MOZ_BROWSER_STATUSBAR']:
DIRS += ['statusbar'] DIRS += ['statusbar']
if CONFIG['MOZ_SERVICES_SYNC']:
DIRS += ['sync']
DIRS += ['build'] DIRS += ['build']
XPIDL_SOURCES += [ XPIDL_SOURCES += [

View file

@ -0,0 +1,22 @@
# 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/.
browser.jar:
content/browser/sync/aboutSyncTabs.xul
content/browser/sync/aboutSyncTabs.js
content/browser/sync/aboutSyncTabs.css
content/browser/sync/aboutSyncTabs-bindings.xml
content/browser/sync/setup.xul
content/browser/sync/addDevice.js
content/browser/sync/addDevice.xul
content/browser/sync/setup.js
content/browser/sync/genericChange.xul
content/browser/sync/genericChange.js
content/browser/sync/key.xhtml
content/browser/sync/notification.xml
content/browser/sync/quota.xul
content/browser/sync/quota.js
content/browser/sync/utils.js
content/browser/sync/progress.js
content/browser/sync/progress.xhtml

View file

@ -0,0 +1,8 @@
# -*- 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/.
JAR_MANIFESTS += ['jar.mn']