moz.build (1070B)
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 if CONFIG["MOZ_GECKOVIEW_HISTORY"]: 8 EXPORTS += [ 9 "GeckoViewHistory.h", 10 ] 11 SOURCES += [ 12 "GeckoViewHistory.cpp", 13 ] 14 include("/ipc/chromium/chromium-config.mozbuild") 15 16 XPCOM_MANIFESTS += [ 17 "components.conf", 18 ] 19 20 EXTRA_COMPONENTS += [ 21 "GeckoView.manifest", 22 ] 23 24 EXTRA_JS_MODULES += [ 25 "ColorPickerDelegate.sys.mjs", 26 "FilePickerDelegate.sys.mjs", 27 "GeckoViewPermission.sys.mjs", 28 "GeckoViewPreferences.sys.mjs", 29 "GeckoViewPrompt.sys.mjs", 30 "GeckoViewPrompter.sys.mjs", 31 "GeckoViewPush.sys.mjs", 32 "GeckoViewServiceWorker.sys.mjs", 33 "GeckoViewStartup.sys.mjs", 34 "LoginStorageDelegate.sys.mjs", 35 "PromptCollection.sys.mjs", 36 "SessionStoreFunctions.sys.mjs", 37 "ShareDelegate.sys.mjs", 38 ] 39 40 FINAL_LIBRARY = "xul"