| OLD | NEW |
| 1 ; This Source Code Form is subject to the terms of the Mozilla Public | 1 ; This Source Code Form is subject to the terms of the Mozilla Public |
| 2 ; License, v. 2.0. If a copy of the MPL was not distributed with this | 2 ; License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 ; file, You can obtain one at http://mozilla.org/MPL/2.0/. | 3 ; file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 4 | 4 |
| 5 ; Package file for the Fennec build. | 5 ; Package file for the Fennec build. |
| 6 ; | 6 ; |
| 7 ; File format: | 7 ; File format: |
| 8 ; | 8 ; |
| 9 ; [] designates a toplevel component. Example: [xpcom] | 9 ; [] designates a toplevel component. Example: [xpcom] |
| 10 ; - in front of a file specifies it to be removed from the destination | 10 ; - in front of a file specifies it to be removed from the destination |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 @BINPATH@/defaults/profile/localstore.rdf | 23 @BINPATH@/defaults/profile/localstore.rdf |
| 24 @BINPATH@/defaults/profile/mimeTypes.rdf | 24 @BINPATH@/defaults/profile/mimeTypes.rdf |
| 25 @BINPATH@/defaults/profile/chrome/* | 25 @BINPATH@/defaults/profile/chrome/* |
| 26 @BINPATH@/update.locale | 26 @BINPATH@/update.locale |
| 27 #ifdef MOZ_UPDATER | 27 #ifdef MOZ_UPDATER |
| 28 @BINPATH@/updater.ini | 28 @BINPATH@/updater.ini |
| 29 #endif | 29 #endif |
| 30 @BINPATH@/dictionaries/* | 30 @BINPATH@/dictionaries/* |
| 31 @BINPATH@/hyphenation/* | 31 @BINPATH@/hyphenation/* |
| 32 | 32 |
| 33 ; Placing embedded extensions in assets/extensions/* |
| 34 ; See https://issues.adblockplus.org/ticket/5426 |
| 35 [assets destdir="assets"] |
| 36 @BINPATH@/extensions/* |
| 37 |
| 33 [assets destdir="assets/@ANDROID_CPU_ARCH@"] | 38 [assets destdir="assets/@ANDROID_CPU_ARCH@"] |
| 34 #ifndef MOZ_STATIC_JS | 39 #ifndef MOZ_STATIC_JS |
| 35 @BINPATH@/@DLL_PREFIX@mozjs@DLL_SUFFIX@ | 40 @BINPATH@/@DLL_PREFIX@mozjs@DLL_SUFFIX@ |
| 36 #endif | 41 #endif |
| 37 #ifdef MOZ_DMD | 42 #ifdef MOZ_DMD |
| 38 @BINPATH@/@DLL_PREFIX@dmd@DLL_SUFFIX@ | 43 @BINPATH@/@DLL_PREFIX@dmd@DLL_SUFFIX@ |
| 39 #endif | 44 #endif |
| 40 #ifndef MOZ_FOLD_LIBS | 45 #ifndef MOZ_FOLD_LIBS |
| 41 @BINPATH@/@DLL_PREFIX@plc4@DLL_SUFFIX@ | 46 @BINPATH@/@DLL_PREFIX@plc4@DLL_SUFFIX@ |
| 42 @BINPATH@/@DLL_PREFIX@plds4@DLL_SUFFIX@ | 47 @BINPATH@/@DLL_PREFIX@plds4@DLL_SUFFIX@ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 [xpcom] | 88 [xpcom] |
| 84 @BINPATH@/dependentlibs.list | 89 @BINPATH@/dependentlibs.list |
| 85 | 90 |
| 86 @BINPATH@/AndroidManifest.xml | 91 @BINPATH@/AndroidManifest.xml |
| 87 @BINPATH@/resources.arsc | 92 @BINPATH@/resources.arsc |
| 88 @BINPATH@/package-name.txt | 93 @BINPATH@/package-name.txt |
| 89 @BINPATH@/classes.dex | 94 @BINPATH@/classes.dex |
| 90 @BINPATH@/res/drawable | 95 @BINPATH@/res/drawable |
| 91 @BINPATH@/res/drawable-hdpi | 96 @BINPATH@/res/drawable-hdpi |
| 92 @BINPATH@/res/layout | 97 @BINPATH@/res/layout |
| 93 @BINPATH@/extensions/* | |
| 94 | 98 |
| 95 [browser] | 99 [browser] |
| 96 ; [Base Browser Files] | 100 ; [Base Browser Files] |
| 97 #ifndef XP_UNIX | 101 #ifndef XP_UNIX |
| 98 @BINPATH@/@MOZ_APP_NAME@.exe | 102 @BINPATH@/@MOZ_APP_NAME@.exe |
| 99 #else | 103 #else |
| 100 @BINPATH@/@MOZ_APP_NAME@-bin | 104 @BINPATH@/@MOZ_APP_NAME@-bin |
| 101 @BINPATH@/@MOZ_APP_NAME@ | 105 @BINPATH@/@MOZ_APP_NAME@ |
| 102 #endif | 106 #endif |
| 103 @BINPATH@/application.ini | 107 @BINPATH@/application.ini |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 #endif | 664 #endif |
| 661 | 665 |
| 662 @BINPATH@/components/WebappsUpdateTimer.js | 666 @BINPATH@/components/WebappsUpdateTimer.js |
| 663 @BINPATH@/components/DataStore.manifest | 667 @BINPATH@/components/DataStore.manifest |
| 664 @BINPATH@/components/DataStoreImpl.js | 668 @BINPATH@/components/DataStoreImpl.js |
| 665 @BINPATH@/components/dom_datastore.xpt | 669 @BINPATH@/components/dom_datastore.xpt |
| 666 | 670 |
| 667 #ifdef PKG_LOCALE_MANIFEST | 671 #ifdef PKG_LOCALE_MANIFEST |
| 668 #include @PKG_LOCALE_MANIFEST@ | 672 #include @PKG_LOCALE_MANIFEST@ |
| 669 #endif | 673 #endif |
| OLD | NEW |