moz.build (885B)
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 with Files("**"): 8 BUG_COMPONENT = ("Core", "DOM: Core & HTML") 9 10 EXPORTS.mozilla.dom += [ 11 "MidiPermissionStatus.h", 12 "Permissions.h", 13 "PermissionStatus.h", 14 "PermissionUtils.h", 15 "StorageAccessPermissionStatus.h", 16 ] 17 18 UNIFIED_SOURCES += [ 19 "MidiPermissionStatus.cpp", 20 "PermissionObserver.cpp", 21 "Permissions.cpp", 22 "PermissionStatus.cpp", 23 "PermissionStatusSink.cpp", 24 "PermissionUtils.cpp", 25 "StorageAccessPermissionStatus.cpp", 26 ] 27 28 MOCHITEST_MANIFESTS += ["tests/mochitest.toml"] 29 30 FINAL_LIBRARY = "xul" 31 32 include("/ipc/chromium/chromium-config.mozbuild")