tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 7bb587f4b39688097858b02e90223f1cde0f25c9
parent 561b2cbc93f9abf8265a991e1bcc43aa597cb51a
Author: Tom Zhang <tzhang@mozilla.com>
Date:   Tue,  2 Dec 2025 15:45:55 +0000

Bug 2003524 - setup prompts folder r=ai-models-reviewers,cdipersio

Differential Revision: https://phabricator.services.mozilla.com/D274757

Diffstat:
Mbrowser/components/aiwindow/models/moz.build | 4++++
Abrowser/components/aiwindow/models/prompts/moz.build | 6++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/browser/components/aiwindow/models/moz.build b/browser/components/aiwindow/models/moz.build @@ -5,6 +5,10 @@ with Files("**"): BUG_COMPONENT = ("Core", "Machine Learning: General") +DIRS += [ + "prompts", +] + MOZ_SRC_FILES += [ "ChatUtils.mjs", "InsightsHistorySource.sys.mjs", diff --git a/browser/components/aiwindow/models/prompts/moz.build b/browser/components/aiwindow/models/prompts/moz.build @@ -0,0 +1,6 @@ +# 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/. + +with Files("**"): + BUG_COMPONENT = ("Core", "Machine Learning: General")