tor-browser

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

moz.build (896B)


      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 BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"]
      6 
      7 MOCHITEST_CHROME_MANIFESTS += [
      8     "tests/chrome/chrome.toml",
      9 ]
     10 
     11 with Files("**"):
     12     BUG_COMPONENT = ("Core", "Machine Learning: Frontend")
     13 
     14 EXTRA_JS_MODULES += [
     15     "GenAI.sys.mjs",
     16 ]
     17 
     18 MOZ_SRC_FILES += [
     19     "LinkPreview.sys.mjs",
     20     "LinkPreviewModel.sys.mjs",
     21     "PageAssist.sys.mjs",
     22     "SmartAssistEngine.sys.mjs",
     23 ]
     24 
     25 FINAL_TARGET_FILES.actors += [
     26     "GenAIChild.sys.mjs",
     27     "GenAIParent.sys.mjs",
     28     "LinkPreviewChild.sys.mjs",
     29     "LinkPreviewParent.sys.mjs",
     30     "PageAssistChild.sys.mjs",
     31     "PageAssistParent.sys.mjs",
     32 ]
     33 
     34 JAR_MANIFESTS += ["jar.mn"]
     35 
     36 XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.toml"]