moz.build (752B)
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 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 with Files("**"): 6 BUG_COMPONENT = ("Core", "Machine Learning: General") 7 8 DIRS += [ 9 "memories", 10 "prompts", 11 ] 12 13 BROWSER_CHROME_MANIFESTS += [ 14 "tests/browser/browser.toml", 15 ] 16 17 MOZ_SRC_FILES += [ 18 "Chat.sys.mjs", 19 "ChatUtils.sys.mjs", 20 "ConversationSuggestions.sys.mjs", 21 "IntentClassifier.sys.mjs", 22 "SearchBrowsingHistory.sys.mjs", 23 "SearchBrowsingHistoryDomainBoost.sys.mjs", 24 "TitleGeneration.sys.mjs", 25 "Tools.sys.mjs", 26 "Utils.sys.mjs", 27 ] 28 29 XPCSHELL_TESTS_MANIFESTS += [ 30 "tests/xpcshell/xpcshell.toml", 31 ]