Splits the `00-waterfox.js` file into several more focused preference files for better organization: - `00-general.js`: General settings. - `01-theme.js`: UI theme related settings. - `02-privacy.js`: Privacy settings. - `03-features.js`: Feature toggles. - `04-sidebar.js`: Sidebar settings. Also removes the unused `02-speed.js` and `03-privacy.js` files, and updates moz.build accordingly
24 lines
619 B
Python
24 lines
619 B
Python
# -*- Mode: python; 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 += [
|
|
"components",
|
|
"extensions/common",
|
|
"locales",
|
|
"themes",
|
|
]
|
|
|
|
DIST_SUBDIR = "browser"
|
|
export("DIST_SUBDIR")
|
|
|
|
JS_PREFERENCE_PP_FILES += [
|
|
"app/profile/00-general.js",
|
|
"app/profile/01-theme.js",
|
|
"app/profile/02-privacy.js",
|
|
"app/profile/03-features.js",
|
|
"app/profile/04-sidebar.js",
|
|
]
|